<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>nhaskins.com &#187; .htaccess</title>
	<atom:link href="http://nhaskins.com/tag/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>http://nhaskins.com</link>
	<description>web development note book</description>
	<lastBuildDate>Thu, 17 May 2012 13:18:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>force SSL addresses with .htaccess</title>
		<link>http://nhaskins.com/post/force-ssl-addresses-with-htaccess/</link>
		<comments>http://nhaskins.com/post/force-ssl-addresses-with-htaccess/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 20:35:20 +0000</pubDate>
		<dc:creator>Nathan Haskins</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://nhaskins.com/post/force-ssl-addresses-with-htaccess/</guid>
		<description><![CDATA[pretty simple, added this to .htaccess: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://mywebsite.com/$1 [R,L]]]></description>
			<content:encoded><![CDATA[<p>pretty simple, added this to .htaccess: </p>
<pre><code>RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ <a href="https://mywebsite.com/$1" rel="nofollow">https://mywebsite.com/$1</a> [R,L]
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://nhaskins.com/post/force-ssl-addresses-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MIME for .vcf files can be hit or miss. &#8230;</title>
		<link>http://nhaskins.com/status/mime-for-vcf-files-can-be-hit-or-miss/</link>
		<comments>http://nhaskins.com/status/mime-for-vcf-files-can-be-hit-or-miss/#comments</comments>
		<pubDate>Mon, 10 May 2010 20:26:04 +0000</pubDate>
		<dc:creator>Nathan Haskins</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[.vcf]]></category>
		<category><![CDATA[simplehelix]]></category>

		<guid isPermaLink="false">http://nhaskins.com/status/mime-for-vcf-files-can-be-hit-or-miss/</guid>
		<description><![CDATA[MIME for .vcf files can be hit or miss. Simplehelix&#8217;s justin goldsmith figured out the solution: modify .htaccess&#8230; IE/Safari/FF fix: AddType application/octet-stream .vcf]]></description>
			<content:encoded><![CDATA[<p>MIME for .vcf files can be hit or miss.  Simplehelix&#8217;s justin goldsmith figured out the solution:</p>
<p>modify .htaccess&#8230;<br />
IE/Safari/FF fix: AddType application/octet-stream .vcf</p>
]]></content:encoded>
			<wfw:commentRss>http://nhaskins.com/status/mime-for-vcf-files-can-be-hit-or-miss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the (max) account uses .htaccess, no acc&#8230;</title>
		<link>http://nhaskins.com/status/the-max-account-uses-htaccess-no-acc/</link>
		<comments>http://nhaskins.com/status/the-max-account-uses-htaccess-no-acc/#comments</comments>
		<pubDate>Mon, 03 May 2010 18:07:58 +0000</pubDate>
		<dc:creator>Nathan Haskins</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[simplehelix]]></category>

		<guid isPermaLink="false">http://nhaskins.com/status/the-max-account-uses-htaccess-no-acc/</guid>
		<description><![CDATA[the simplehelix (max) account uses .htaccess, no access to php.ini&#8230; had to setup some max timeouts so i used the following in a .htaccess file in the sites root directory: php_value upload_max_filesize 20M php_value post_max_size 20M php_value max_execution_time 200 php_value max_input_time 200 That should do it in theory.]]></description>
			<content:encoded><![CDATA[<p>the simplehelix (max) account uses .htaccess, no access to php.ini&#8230; had to setup some max timeouts so i used the following in a .htaccess file in the sites root directory:</p>
<pre><code>php_value upload_max_filesize 20M
php_value post_max_size 20M
php_value max_execution_time 200
php_value max_input_time 200</code></pre>
<p>That should do it in theory.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhaskins.com/status/the-max-account-uses-htaccess-no-acc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

