.htaccess 重定向问题

浏览:777 发布日期:2014/11/10 分类:求助交流
<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 但是好像未生效
最佳答案
评论( 相关
后面还有条评论,点击查看>>