我目前的网址看起来像这个 [mysite]index.php/[rest of the slug]
。
我想从这些网址中剥离 index.php
。
在我的 apache2服务器上启用了 mod_rewrite
我的代码设计器根 .htaccess
文件包含,
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
但还是不行,我哪里做错了?