Monday, June 27, 2011

Apache Rewrite Rule

I'm not expert at Apache or Rewrite rules so this may be useless.  But to redirect any url except a certain folder you can use the following:


RewriteEngine on
RewriteCond %{REQUEST_URI} !test/ [NC]
RewriteCond %{REQUEST_URI} !blog\.iphoneidiot\.com$ [NC]
RewriteRule .* http://blog.iphoneidiot.com [R=302,L]

This redirects any request except the "test" folder to blog.iphoneidiot.com

No comments:

Post a Comment