How do I mod rewrite an entire site excluding a couple of subdirectories? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T19:18:15Zhttp://stackoverflow.com/feeds/question/467364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/467364/how-do-i-mod-rewrite-an-entire-site-excluding-a-couple-of-subdirectories1How do I mod rewrite an entire site excluding a couple of subdirectories?different2009-01-21T22:43:48Z2009-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&page=$2 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?section=$1&page=$2&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#4673772Answer by Sean Bright for How do I mod rewrite an entire site excluding a couple of subdirectories?Sean Bright2009-01-21T22:47:50Z2009-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#4674241Answer by David for How do I mod rewrite an entire site excluding a couple of subdirectories?David2009-01-21T23:04:19Z2009-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>