<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT]
RewriteRule ^/Article/list_(.*).html$ index.php/Article/index/page/$1
</IfModule>最后一条规则 我的想法是把 index.php/article/index/page/2.html 重定向到/article/list_2.html 但是好像未生效
最佳答案