0

我有htaccess文件

Options -Indexes +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*[^/])/?$ /index.php?p=$1 [L,QSA]

即使请求确实存在(文件或目录),如何更改它以强制将请求/sys-admin重定向到?index.php

4

1 回答 1

1

添加另一个规则集:

RewriteCond %{REQUEST_URI} /sys-admin*$

重写规则 ^(.*[^/])/?$ /index.php?p=$1 [L,QSA]

于 2012-05-22T15:32:46.483 回答