0

URL の末尾に「index.php」を追加した場合にのみ、アプリケーションが機能します。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]

ありがとう。

4

1 に答える 1