已經設定了 .htaccess 檔案
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/ [QSA,PT,L]
</IfModule>
訪問 index.php/xxx 的時候還是照常訪問,不會變成 /xxx 這樣的地址,如果我想要 index.php/xxx 會自動跳到 /xxx 請問如何處理?
RewriteBase /index.php所在的DocumentRoot,把.htaccess放在這裡
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [QSA,PT,L]