我想像http://example.com/sites-related-to-australia-0.html
那样重定向。
在这个“澳大利亚”和“0”是参数。我怎么能用htaccess做到这一点?我正在使用php。
非常感谢任何帮助,谢谢!
答案 0 :(得分:2)
可能是这样的:
RewriteRule ^sites-related-to-(\w+)-(\d+)\.html$ /somewhere_else.php?place=$1&pos=$2 [L]
/sites-related-to-
将是网址的第一部分答案 1 :(得分:1)
RewriteRule ^sites-related-to-(\w+)-(\d+).html/$ sites-related-to.html?country=$1&val=$2 [L]
答案 2 :(得分:0)
RedirectMatch sites-related-to-([^-]+)-(\d+)\.html$ http://www.anotherserver.com/something.php?country=$1&id=$2
未经测试,请参阅RedirectMatch
。