【发布时间】:2016-04-06 19:34:30
【问题描述】:
我正在尝试在 htaccess 中使用 RewriteRule 来永久重定向:
http://www.example.com/store/scripts/prodView.asp?idproduct=240
到
http://www.example.com/index.php?route=product/product&path=59&product_id=50
我试过了:
选项 +FollowSymlinks
重写引擎开启
RewriteCond %{QUERY_STRING} ^idproduct=240$ [NC]
RewriteRule ^store/scripts/prodView.asp$ index.php\?route=product/product\&path\=59\&product_id\=50? [L,NC,R=301]
.htaccess 在根目录
谁能建议我哪里出错了?谢谢
【问题讨论】:
标签: php apache .htaccess mod-rewrite