codeigniter url rewrite のコードを書き直したいです。
次のコードを使用しました。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /test/index.php?/$1 [L]
RewriteRue ^list/shows/cid-([0-9]+).html /list/shows?cid=$1
注:「テスト」は私のウェブサイトのディレクトリです。
index.php の除去にうまく機能しています。ただし、URLの書き換えには機能しません
http://example.com/test/list/shows?cid=1を作りたい
なる
http://example.com/test/list/shows/cid-1.html
前もって感謝します。