2

How can i redirect all the urls to one single page and admin to admin-folder-name ??

example

http://domainname.com/about should point to redirect.php?url=about
http://domainname.com/contact should point to redirect.php?url=contact

But at the same time

http://domainname.com/admin should point to admin folder ??

My current .htaccess is

RewriteEngine on 
RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]

I'm struck with /admin Thanks for the help

4

1 回答 1

1

尝试添加排除重定向 /admin 的条件:

RewriteEngine on 
RewriteCond $1 ^/?admin
RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]
于 2013-10-02T00:07:18.670 回答