Redirect All file other than .php
by Vinoth[ Edit ] 2009-09-04 20:08:54
To redirect all file which don't have .php, .html, .gif etc
RewriteEngine on
RewriteCond %{REQUEST_URI} !.html$
RewriteCond %{REQUEST_URI} !.php$
RewriteCond %{REQUEST_URI} !.gif$
RewriteCond %{REQUEST_URI} !.jpg$
RewriteCond %{REQUEST_URI} !.png$
RewriteCond %{REQUEST_URI} !.css$
RewriteRule (.*) http://example.com/somefile.php[L]