我想重写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
注意:“test”是我的网站目录。
它适用于 index.php 删除。但它不适用于 url 重写
我想制作http://example.com/test/list/shows?cid=1
变得
http://example.com/test/list/shows/cid-1.html
提前致谢。