如何重定向 url
1. from http://www.mysite.com/index.php?page=product
to http://www.mysite.com/product.html
AND
2. from http://www.mysite.com/index.php?page=product&id=example-example
tohttp://www.mysite.com/product/example-example.html
问问题
48 次
1 回答
0
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放在您.htaccess
的DOCUMENT_ROOT
目录下:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^([^.]+)\.html$ /index.php?page=$1 [L,NC,QSA]
RewriteRule ^([^/]+)/([^.]+)\.html$ /index.php?page=$1&id=$2 [L,NC,QSA]
于 2013-09-20T09:01:13.980 回答