仅当我将“index.php”添加到 URL 的末尾时,该应用程序才有效。我正在使用 CENTOS。如何删除它,例如我可以转到http://server/admin/dashboard
而不是http://server/admin/index.php/dashboard
. 这是我的 htaccess 文件:
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
谢谢。