我有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
,即使它确实存在(文件或目录)?
答案 0 :(得分:1)
添加另一个规则集:
RewriteCond%{REQUEST_URI} / sys-admin * $
RewriteRule ^(。* [^ /])/?$ /index.php?p=$1 [L,QSA]