如何重定向网址
1.从http://www.mysite.com/index.php?page=product
到http://www.mysite.com/product.html
AND
2.从http://www.mysite.com/index.php?page=product&id=example-example
到http://www.mysite.com/product/example-example.html
答案 0 :(得分:0)
通过httpd.conf
启用mod_rewrite和.htaccess,然后将此代码放在.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]