.htaccess ファイルはすでに設定されています
index.php/xxxにアクセスしても、/xxxのようなアドレスにはならず、index.php/xxxにアクセスすると自動的に/xxxに飛んでしまいます。
index.php が配置されている RewriteBase/DocumentRoot、ここに .htaccess を置きます
RewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$index.php?$1 [QSA,PT,L]
index.php が配置されている RewriteBase/DocumentRoot、ここに .htaccess を置きます
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$index.php?$1 [QSA,PT,L]