Add
RewriteCond ^admin/
RewriteRule (your Rule) [L]
before the other condition. That should do the trick.
Another way would be to include the condition in the rule directly via
RewriteRule ^admin/(rest_of_regex)$ (regex_stuff) [L]
|
2 | another solution | ||
|
Add
before the other condition. That should do the trick. Another way would be to include the condition in the rule directly via
|
||||
|
1 |
|
||
|
Add
before the other condition. That should do the trick. |
||||