0

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>

助言がありますか ?

4

2 に答える 2

0

以下を使用します。

RewriteRule ^latestnews/([0-9]+)/?$   latestnews/index/$1

例については、このドキュメントを参照してください。

于 2013-10-30T05:32:56.917 に答える