重写规则不适用于localhost

时间:2017-11-22 19:03:16

标签: php .htaccess url mod-rewrite url-rewriting

我想重写网址

http://localhost/sample/eventcentre.php?url=someurl

http://localhost/sample/vn/someurl

这是我目前的重写规则:

RewriteEngine On
RewriteRule ^vn/([^/\.]+)?$ /eventcentre.php?url=$1 [L]

它似乎没有起作用。我能做错什么?

1 个答案:

答案 0 :(得分:0)

在此处列出的重写规则中,它以^开头 - 这表示重写的开始。

示例网址以sample开头 - 所以如果你将两者一起修改它应该可以工作,即:

RewriteEngine On
RewriteRule ^sample/vn/([^/\.]+)?$ /eventcentre.php?url=$1 [L]