URLを再登録したいです。
既存の URL は次のとおりです:http://www.ritascantina.com/latestnews/index/18
そして私はこのようにしたい:http://www.ritascantina.com/latestnews/18
私のHTACCESSファイルは次のとおりです。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(home(/index)?|index(\.php)?)/?$ / [L,R=301]
RewriteRule ^(.*)/index/?$ $1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
助言がありますか ?