<?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>Gabriel de Kadt &#187; server side</title>
	<atom:link href="http://www.lazydada.com/tag/server-side/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lazydada.com</link>
	<description>Personal notes on Mac based web development and design.</description>
	<lastBuildDate>Thu, 09 Sep 2010 15:29:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Display proper maintenance page with .htaccess</title>
		<link>http://www.lazydada.com/2009-06-08/display-proper-maintenance-page-with-htaccess/</link>
		<comments>http://www.lazydada.com/2009-06-08/display-proper-maintenance-page-with-htaccess/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 10:28:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design & development]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[server side]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://www.lazydada.com/?p=359</guid>
		<description><![CDATA[Create a decent &#8220;sorry this site is down for maintenace&#8221; page with a &#8220;have a Nice day&#8221; message then when you do need to upgrade things use the following htaccess rewrite rule to forward all traffic to this page. Adapted from Marco’s Webdev Notepad RewriteEngine on RewriteCond %{REMOTE_ADDR} !^83\.57\.178\.37$ RewriteRule !maintenance/index.html /maintenance/index.html [L,NC,R=302] From Ask [...]]]></description>
			<content:encoded><![CDATA[<p>Create a decent &#8220;sorry this site is down for maintenace&#8221; page with a &#8220;have a Nice day&#8221; message then when you do need to upgrade things use the following htaccess rewrite rule to forward all traffic to this page.</p>
<p>Adapted from <a href="http://blog.t14g.de/index.php/archives/819">Marco’s Webdev Notepad</a></p>
<pre>RewriteEngine on
RewriteCond %{REMOTE_ADDR} !^83\.57\.178\.37$
RewriteRule !maintenance/index.html /maintenance/index.html [L,NC,R=302]</pre>
<p>From <a href="http://www.askapache.com/">Ask Apache</a> (I like)</p>
<pre>ErrorDocument 403 http://www.sub.domain.com/
Order deny,allow
Deny from all
Allow from 83.57.178.37</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lazydada.com/2009-06-08/display-proper-maintenance-page-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->