我想知道我是否可以帮助更改网址。
我想将所有城市/州的网址更改并匹配为其他格式,如果有人登陆,请将其重定向到较新的网址。
我想更改并重定向:
http://www.domain.com/FL/Miami.html
to
http://www.domain.com/miami-fl/
我现在的规则是我想要更改并重定向到新的规则:
RewriteEngine On
RewriteRule ^(.*)/(.*)\.html$ index.php?st=$1&city=$2 [L]
答案 0 :(得分:0)
只要案件不重要,您就可以这样做:
RewriteEngine On
RewriteRule ^(.+)-([^/-]+)\.html$ index.php?st=$2&city=$1 [L]