我试图从
重写网址到mysitehttp://www.mysite.com/index.php?country=uk
到
http://www.mysite.com/uk
但正在打印500错误页面, 我正在使用
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?country=$1 [L]
感谢您的帮助,谢谢。
答案 0 :(得分:0)
将其更改为:
RewriteEngine On
RewriteRule ^([^/]*)$ index.php?country=$1 [L]
这会奏效。在index.php之前删除斜杠,重写将起作用。