<?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"
	>
<channel>
	<title>Comments on: Instruct Search Engines to come back to site after you finish working on it</title>
	<atom:link href="http://www.askapache.com/htaccess/503-service-temporarily-unavailable.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com/htaccess/503-service-temporarily-unavailable.html</link>
	<description>Web Development</description>
	<pubDate>Wed, 09 Jul 2008 06:05:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Mark Reidenbach</title>
		<link>http://www.askapache.com/htaccess/503-service-temporarily-unavailable.html#comment-42173</link>
		<dc:creator>Mark Reidenbach</dc:creator>
		<pubDate>Thu, 05 Jun 2008 23:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/instruct-search-engines-to-come-back-to-site-after-you-finish-working-on-it.html#comment-42173</guid>
		<description>I was curious if there was a way of doing this strictly in apache2 using mod_rewrite and mod_headers.  I ended up with the following which is similar to your developer example:

&lt;pre&gt;&lt;br /&gt;
# Custom 503 error page&lt;br /&gt;
ErrorDocument 503 /maintenance.htm&lt;br /&gt;
&#160;&lt;br /&gt;
# Developer Address&lt;br /&gt;
RewriteCond %{REMOTE_ADDR} !^192\.168\.1\.1$&lt;br /&gt;
# Only rewrite pages that are dynamic (php, html, and directory index pages)&lt;br /&gt;
RewriteCond %{REQUEST_URI} ^(\/.*\.php&#124;\/.*\.html&#124;\/)$&lt;br /&gt;
# Set environment variable for later&lt;br /&gt;
RewriteRule .* - [E=maintain:1]&lt;br /&gt;
&#160;&lt;br /&gt;
# Send Retry-After header for clients that match above rewrite section&lt;br /&gt;
Header always set Retry-After &#34;7200&#34; env=maintain&lt;br /&gt;
&#160;&lt;br /&gt;
# Send 503 error to matching clients after setting Retry-After header&lt;br /&gt;
RewriteCond %{ENV:maintain} 1&lt;br /&gt;
# Again, only send 503 for dynamic pages (php, html, and directory index pages)&lt;br /&gt;
RewriteRule ^(\/.*\.php&#124;\/.*\.html&#124;\/)$ - [R=503]&lt;br /&gt;
&lt;/pre&gt;


Hope someone finds that useful.</description>
		<content:encoded><![CDATA[<p>I was curious if there was a way of doing this strictly in apache2 using mod_rewrite and mod_headers.  I ended up with the following which is similar to your developer example:</p>
<pre>
# Custom 503 error page
ErrorDocument 503 /maintenance.htm
&nbsp;
# Developer Address
RewriteCond %{REMOTE_ADDR} !^192\.168\.1\.1$
# Only rewrite pages that are dynamic (php, html, and directory index pages)
RewriteCond %{REQUEST_URI} ^(\/.*\.php|\/.*\.html|\/)$
# Set environment variable for later
RewriteRule .* - [E=maintain:1]
&nbsp;
# Send Retry-After header for clients that match above rewrite section
Header always set Retry-After &quot;7200&quot; env=maintain
&nbsp;
# Send 503 error to matching clients after setting Retry-After header
RewriteCond %{ENV:maintain} 1
# Again, only send 503 for dynamic pages (php, html, and directory index pages)
RewriteRule ^(\/.*\.php|\/.*\.html|\/)$ - [R=503]
</pre>
<p>Hope someone finds that useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oliver</title>
		<link>http://www.askapache.com/htaccess/503-service-temporarily-unavailable.html#comment-34123</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Thu, 10 Jan 2008 14:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/instruct-search-engines-to-come-back-to-site-after-you-finish-working-on-it.html#comment-34123</guid>
		<description>Thanks for this Information...

Oliver</description>
		<content:encoded><![CDATA[<p>Thanks for this Information&#8230;</p>
<p>Oliver</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim</title>
		<link>http://www.askapache.com/htaccess/503-service-temporarily-unavailable.html#comment-22482</link>
		<dc:creator>Kim</dc:creator>
		<pubDate>Mon, 08 Oct 2007 15:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/instruct-search-engines-to-come-back-to-site-after-you-finish-working-on-it.html#comment-22482</guid>
		<description>Good morning,

I have question about these bots in general.  Comparing the data from Google Analytics, which I run myself, and from AWStats which the company that does my SEO sends me, I've noticed some very large discrepancies.  I'm wondering if the SEO company is using autosurf or other kinds of bots to drive up the numbers.  Is there any way to detect this?  I'd appreciate any advice or direction anyone could provide.  My email is grace618@aol.com.  

Thanks,
Kim</description>
		<content:encoded><![CDATA[<p>Good morning,</p>
<p>I have question about these bots in general.  Comparing the data from Google Analytics, which I run myself, and from AWStats which the company that does my SEO sends me, I&#8217;ve noticed some very large discrepancies.  I&#8217;m wondering if the SEO company is using autosurf or other kinds of bots to drive up the numbers.  Is there any way to detect this?  I&#8217;d appreciate any advice or direction anyone could provide.  My email is <a href="mailto:grace618@aol.com">grace618@aol.com</a>.  </p>
<p>Thanks,<br />
Kim</p>
]]></content:encoded>
	</item>
</channel>
</rss>
