http://localhost/index.php/Home/Index/item_list/p/2.html
这个地址呢
而不是http://localhost/Home/Index/item_list/p/2.html呢
这是我重写规则
<IfModule mod_rewrite.c>
Options +FollowSymli
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
最佳答案