Subfolders and mod-rewrite - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T05:56:24Zhttp://stackoverflow.com/feeds/question/992054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/992054/subfolders-and-mod-rewrite0Subfolders and mod-rewriteTorez2009-06-14T03:08:22Z2009-06-18T11:21:20Z
<p>I need to alter this current re-write rule to accommodate for an admin folder. Here is my current mod-rewrite code:</p>
<pre>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z]+?)/([a-z]+?)/(.*)$ index.php?model=$1&view=$2¶ms=$3 [L,NS]
</pre>
<p>I have this folder structure:</p>
<pre>
ROOT: http://www.domain.com/
ADMIN: http://www.domain.com/admin/
</pre>
<p>If the .htaccess file is in the "admin" folder it works correctly. I get:</p>
<pre>
URL: http://domain.com/admin/faq/edit/13/asc
(NOTE: http://domain.com/admin/.htaccess)
Array
(
[model] => faq
[view] => edit
[params] => 13/asc
)
</pre>
<p>But, when its in the root folder I get:</p>
<pre>
URL: http://domain.com/admin/faq/edit/13/asc
(NOTE: http://domain.com/.htaccess)
Array
(
[model] => admin
[view] => faq
[params] => edit/13/asc
)
</pre>
<p>I want the mod-rewrite to recognize that admin folder and is an actual directory and use a separate re-write rule.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/992054/subfolders-and-mod-rewrite/1011954#10119542Answer by Residuum for Subfolders and mod-rewriteResiduum2009-06-18T10:27:38Z2009-06-18T11:11:24Z<p>Add</p>
<pre><code>RewriteCond ^admin/
RewriteRule (your Rule) [L]
</code></pre>
<p>before the other condition. That should do the trick. </p>
<p>Another way would be to include the condition in the rule directly via</p>
<pre><code>RewriteRule ^admin/(rest_of_regex)$ (regex_stuff) [L]
</code></pre>
http://stackoverflow.com/questions/992054/subfolders-and-mod-rewrite/1012133#10121331Answer by Jerome Elkins for Subfolders and mod-rewriteJerome Elkins2009-06-18T11:21:20Z2009-06-18T11:21:20Z<p>Add this to your root .htaccess:</p>
<pre><code>RewriteCond ^admin/
RewriteRule (whatever rule you need for the admin folder) [L]
</code></pre>
<p>Add this right after the <code>RewriteEngine On</code>. The key point here is <code>[L]</code> which tells mod-rewrite to stop executing the rest of the rules if this one matches. If you need more than one rule for the admin folder, just add more RewriteRule statements, but remember to only add the <code>[L]</code> to the last one.</p>
<p>That should do it.</p>