<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Errors with .htaccess : Site Down with 403 Forbidden Errors</title>
	<atom:link href="http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/</link>
	<description>Technology News, Blogging Tips, Guestblogging, Social Media</description>
	<lastBuildDate>Fri, 10 Feb 2012 21:37:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Narlax</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-3/#comment-894380</link>
		<dc:creator>Narlax</dc:creator>
		<pubDate>Mon, 04 Apr 2011 07:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-894380</guid>
		<description>well....thanks to all for sharing your ideas</description>
		<content:encoded><![CDATA[<p>well&#8230;.thanks to all for sharing your ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: online</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-2/#comment-724035</link>
		<dc:creator>online</dc:creator>
		<pubDate>Fri, 03 Apr 2009 03:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-724035</guid>
		<description>You will probably want to create an error document for codes 404 and 500, at the least 404 since this would give you a chance to handle requests for pages not found. 500 would help you out with internal server errors in any scripts you have running. You may also want to consider ErrorDocuments for 401 - Authorization Required (as in when somebody tries to enter a protected area of your site without the proper credentials), 403 - Forbidden (as in when a file with permissions not allowing it to be accessed by the user is requested) and 400 - Bad Request, which is one of those generic kind of errors that people get to by doing some weird stuff with your URL or scripts.</description>
		<content:encoded><![CDATA[<p>You will probably want to create an error document for codes 404 and 500, at the least 404 since this would give you a chance to handle requests for pages not found. 500 would help you out with internal server errors in any scripts you have running. You may also want to consider ErrorDocuments for 401 &#8211; Authorization Required (as in when somebody tries to enter a protected area of your site without the proper credentials), 403 &#8211; Forbidden (as in when a file with permissions not allowing it to be accessed by the user is requested) and 400 &#8211; Bad Request, which is one of those generic kind of errors that people get to by doing some weird stuff with your URL or scripts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Brode</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-2/#comment-633351</link>
		<dc:creator>Michael Brode</dc:creator>
		<pubDate>Thu, 24 Apr 2008 12:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-633351</guid>
		<description>Hello friend,

You can visible hidden files (.htaccess) in FileZilla 3 as follows:
-- You go under the menu item &quot;Server&quot; and activate &quot;list hidden files force&quot;
-- The following dialog close simply by klick OK. Done.

Greeting</description>
		<content:encoded><![CDATA[<p>Hello friend,</p>
<p>You can visible hidden files (.htaccess) in FileZilla 3 as follows:<br />
&#8211; You go under the menu item &#8220;Server&#8221; and activate &#8220;list hidden files force&#8221;<br />
&#8211; The following dialog close simply by klick OK. Done.</p>
<p>Greeting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MPLS</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-2/#comment-615813</link>
		<dc:creator>MPLS</dc:creator>
		<pubDate>Sat, 02 Feb 2008 04:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-615813</guid>
		<description>I had a similar problem. I was doing some testing and have installed PHP 5 on a development server. I had a site installed on the server that was working correctly, complete with quite an elaborate .htaccess file handling many redirects and rules. However, after installing PHP5 it turns out any php file I tried to view just returned a 403 Forbidden error. I began to scratch my head. Searching on Google didn&#039;t immediately bring up a solution either. However, I eventually narrowed it down to the fact that I needed to add Options +FollowSymLinks to my .htaccess file. That solved it all.</description>
		<content:encoded><![CDATA[<p>I had a similar problem. I was doing some testing and have installed PHP 5 on a development server. I had a site installed on the server that was working correctly, complete with quite an elaborate .htaccess file handling many redirects and rules. However, after installing PHP5 it turns out any php file I tried to view just returned a 403 Forbidden error. I began to scratch my head. Searching on Google didn&#8217;t immediately bring up a solution either. However, I eventually narrowed it down to the fact that I needed to add Options +FollowSymLinks to my .htaccess file. That solved it all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Van Dusen</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-2/#comment-438348</link>
		<dc:creator>Matt Van Dusen</dc:creator>
		<pubDate>Sat, 18 Aug 2007 14:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-438348</guid>
		<description>In my experience with Dreamhost, they do mean well, and usually fix it right the first time - but this shows that yes, they are human. They can make mistakes, However, they will tell you when they do something, they don&#039;t beat around the bush, and if something requires action from you (that they can&#039;t just control themselves from the support center), they will give you step-by-step direction on the matter, whether it is upgrading your webapps (a clear-cut case of &quot;staying on top of things&quot;) or telling Google that they don&#039;t need to make 50,000 hits every hour (a clear-cut case of &quot;our servers can handle it.... can yours?&quot;).

Granted, Google pretty much IS the internets these days, but even they can be blocked with very little effort. :P</description>
		<content:encoded><![CDATA[<p>In my experience with Dreamhost, they do mean well, and usually fix it right the first time &#8211; but this shows that yes, they are human. They can make mistakes, However, they will tell you when they do something, they don&#8217;t beat around the bush, and if something requires action from you (that they can&#8217;t just control themselves from the support center), they will give you step-by-step direction on the matter, whether it is upgrading your webapps (a clear-cut case of &#8220;staying on top of things&#8221;) or telling Google that they don&#8217;t need to make 50,000 hits every hour (a clear-cut case of &#8220;our servers can handle it&#8230;. can yours?&#8221;).</p>
<p>Granted, Google pretty much IS the internets these days, but even they can be blocked with very little effort. :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr. Nosuch</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-2/#comment-314494</link>
		<dc:creator>Mr. Nosuch</dc:creator>
		<pubDate>Mon, 04 Jun 2007 17:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-314494</guid>
		<description>Thanks for posting this. It helped me figure out why our forums page rank went to 0. It killed our ad revenues and search results.

I&#039;m really pissed that Dreamhost would do this without contacting me. They have a fine contact/support system, yet when they decided to make huge changes like this, they don&#039;t let me know?

Really, really annoying.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this. It helped me figure out why our forums page rank went to 0. It killed our ad revenues and search results.</p>
<p>I&#8217;m really pissed that Dreamhost would do this without contacting me. They have a fine contact/support system, yet when they decided to make huge changes like this, they don&#8217;t let me know?</p>
<p>Really, really annoying.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-1/#comment-299073</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 24 May 2007 05:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-299073</guid>
		<description>Blocking Googlebot goes too far.  For people who make a living from search engines it is unacceptable.</description>
		<content:encoded><![CDATA[<p>Blocking Googlebot goes too far.  For people who make a living from search engines it is unacceptable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-1/#comment-273163</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Fri, 04 May 2007 16:27:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-273163</guid>
		<description>I use Dreamhost as well.  They disabled two of my sites at different times because they said I configured my .htaccess file incorrectly, causing it to hit the server over and over again.  In actuality, it was googlebot spidering my site of 20,000 pages.  Seriously, they can&#039;t handle googlebot?  To solve the problem I went into Google Webmaster Tools and slowed down the crawl rate for spidering my site.</description>
		<content:encoded><![CDATA[<p>I use Dreamhost as well.  They disabled two of my sites at different times because they said I configured my .htaccess file incorrectly, causing it to hit the server over and over again.  In actuality, it was googlebot spidering my site of 20,000 pages.  Seriously, they can&#8217;t handle googlebot?  To solve the problem I went into Google Webmaster Tools and slowed down the crawl rate for spidering my site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-1/#comment-264049</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 27 Apr 2007 11:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-264049</guid>
		<description>You have this site on a shared hosting plan over DreamHost?

I am a client of them as well, but I only host smaller sites there. Not reliable at all from my past experiences.</description>
		<content:encoded><![CDATA[<p>You have this site on a shared hosting plan over DreamHost?</p>
<p>I am a client of them as well, but I only host smaller sites there. Not reliable at all from my past experiences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/comment-page-1/#comment-263424</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Fri, 27 Apr 2007 01:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/#comment-263424</guid>
		<description>&lt;/a&gt;but I can&#039;t remember to close my html tags apparently... hehe</description>
		<content:encoded><![CDATA[<p>but I can&#8217;t remember to close my html tags apparently&#8230; hehe</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  www.quickonlinetips.com/archives/2007/04/errors-with-htaccess-site-down-with-403-forbidden-errors/feed/ ) in 0.46405 seconds, on Feb 10th, 2012 at 10:04 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 11th, 2012 at 8:04 am UTC -->
