如何在切诺基中使用以下apache重写规则?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [QSA,L]
</IfModule>
我试图像这样修改它:
Regex Substitution
^/(.*)$ /index.php?$1
但它没有用......