htaccess mod rewrite NOT
Posted
by Neddy
on Stack Overflow
See other posts from Stack Overflow
or by Neddy
Published on 2010-04-19T06:30:10Z
Indexed on
2010/04/19
6:33 UTC
Read the original article
Hit count: 319
Hi, I have a small problem with url rewriting on apache.
I would like it that it ignores the admin/ folder from rewriting.
Options +FollowSymLinks
RewriteRule ^([^/]*)/([^/]*)\.html$ /index.php?cat=$1&name=$2 [L]
RewriteRule ^([^/]*)/$ /index.php?cat=$1 [L]
I have triend doing it myself but I can't figure it out.
Thanks.
© Stack Overflow or respective owner