我不是htaccess的专家,但这是我的代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php\/$1\/? [L,QSA]
# disallow directory browsing
Options All -Indexes
# disallow browsing through the below folders
RedirectMatch 403 \/(config|Library|templates)\/.*
</IfModule>
现在,它可以在我的localhost和apache服务器上正常工作,但是我的共享服务器是fastcgi,我无法使其工作,因为它一直返回“未指定输入”。
关于如何解决此问题的任何建议?