如何使用.htaccess将所有URL重定向到单页

时间:2013-10-01 20:51:18

标签: .htaccess

如何将所有网址重定向到一个网页,将管理员重定向到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 谢谢你的帮助

1 个答案:

答案 0 :(得分:1)

尝试添加排除重定向/管理员的条件:

RewriteEngine on 
RewriteCond $1 ^/?admin
RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]
相关问题