How do I mod rewrite an entire site excluding a couple of subdirectories? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:18:15Z http://stackoverflow.com/feeds/question/467364 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/467364/how-do-i-mod-rewrite-an-entire-site-excluding-a-couple-of-subdirectories 1 How do I mod rewrite an entire site excluding a couple of subdirectories? different 2009-01-21T22:43:48Z 2009-01-21T23:11:29Z <p>I've got a small problem. I've got a good setup which mod rewrites all requests to the site - the only thing is it also rewrites directories which I don't want to be included.</p> <p>I'm using this code in my .htaccess file:</p> <pre><code>RewriteEngine on RewriteRule ^([^/\.]+)/?$ index.php?section=$1 [L] RewriteRule ^([^/\.]+)/([^/\.]+)/?$ index.php?section=$1&amp;page=$2 [L] RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?section=$1&amp;page=$2&amp;split=$3 [L] </code></pre> <p>Ideally I'd like to be able to exclude two directories - access/ and edit/ - edit/ also needs to have it's own set of rules:</p> <pre><code>RewriteRule ^([^/\.]+)/?$ index.php?action=$1 [L] </code></pre> <p>I can get around this problem by linking directly to the .php file in either directory, but this isn't ideal.</p> <p>Any advice?</p> http://stackoverflow.com/questions/467364/how-do-i-mod-rewrite-an-entire-site-excluding-a-couple-of-subdirectories/467377#467377 2 Answer by Sean Bright for How do I mod rewrite an entire site excluding a couple of subdirectories? Sean Bright 2009-01-21T22:47:50Z 2009-01-21T23:11:29Z <p>Use <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewritecond" rel="nofollow">RewriteCond</a></p> <pre><code>RewriteEngine on RewriteCond %{REQUEST_URI} !^/(access|edit)/ RewriteRule ^([^/\.]+)/?$ index.php?section=$1 [L] ... </code></pre> <p>(This is untested, but it should be close)</p> http://stackoverflow.com/questions/467364/how-do-i-mod-rewrite-an-entire-site-excluding-a-couple-of-subdirectories/467424#467424 1 Answer by David for How do I mod rewrite an entire site excluding a couple of subdirectories? David 2009-01-21T23:04:19Z 2009-01-21T23:04:19Z <p>An alternate idea (also untested):</p> <pre><code>RewriteEngine on RewriteRule ^/access/ - [L] RewriteRule ^/edit/([^/\.]+)/?$ /edit/index.php?action=$1 [L] ... (other rules) </code></pre> <p>which would save you from having to repeat the <code>RewriteCond</code> before every rule.</p>