使用htaccess如何转换这种类型的URL:
http://www.mysite.com/page.php?slug=hello-world
进入这种类型:
http://www.mysite.com/page/hello-world
不只是这个网址,而是第一种格式的所有网址都是第二种格式。
答案 0 :(得分:3)
如果第二个是您希望人们看到的网址,请使用以下网址:
RewriteRule ^page/(.*)$ /page.php?slug=$1
如果是相反的话:
RewriteRule ^page\.php?slug=(.*)$ /page/$1
编辑:此外,请确保在任何重写规则之前.htaccess
中包含以下内容:
RewriteEngine On
答案 1 :(得分:1)