如何将所有网址重定向到一个网页,将管理员重定向到admin-folder-name ??
例如
http://domainname.com/about should point to redirect.php?url=about
http://domainname.com/contact should point to redirect.php?url=contact
但同时
http://domainname.com/admin should point to admin folder ??
我目前的.htaccess是
RewriteEngine on
RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]
我很震惊/ admin 谢谢你的帮助
答案 0 :(得分:1)
尝试添加排除重定向/管理员的条件:
RewriteEngine on
RewriteCond $1 ^/?admin
RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]