0

如何重定向 url
1. from http://www.mysite.com/index.php?page=productto http://www.mysite.com/product.html

AND

2. from http://www.mysite.com/index.php?page=product&id=example-exampletohttp://www.mysite.com/product/example-example.html

4

1 回答 1

0

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_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 回答