htaccess mod重写没有后缀

时间:2014-01-19 19:00:56

标签: php apache .htaccess

我试图从

重写网址到mysite
http://www.mysite.com/index.php?country=uk

http://www.mysite.com/uk

但正在打印500错误页面, 我正在使用

RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?country=$1 [L]

感谢您的帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

将其更改为:

RewriteEngine On
RewriteRule ^([^/]*)$ index.php?country=$1 [L]

这会奏效。在index.php之前删除斜杠,重写将起作用。