我想重写网址
http://localhost/sample/eventcentre.php?url=someurl
到
http://localhost/sample/vn/someurl
这是我目前的重写规则:
RewriteEngine On
RewriteRule ^vn/([^/\.]+)?$ /eventcentre.php?url=$1 [L]
它似乎没有起作用。我能做错什么?
答案 0 :(得分:0)
在此处列出的重写规则中,它以^
开头 - 这表示重写的开始。
示例网址以sample
开头 - 所以如果你将两者一起修改它应该可以工作,即:
RewriteEngine On
RewriteRule ^sample/vn/([^/\.]+)?$ /eventcentre.php?url=$1 [L]