0
RewriteRule ^([^/]+).html /index.php?sezione=$1

它应该可以正常工作。但是这个重写有一个问题:实际上它重写正确:

www.example.com/index.php?sezione=hello to www.example.com/hello.html

但它也重写,它不应该与

www.example.com/hello.htmlll  www.example.com/hello.htmlfed

以及 html 扩展名之后的任何其他字符串。我该如何解决?

4

1 回答 1

1

我认为这就是你想要的:

RewriteRule ^([^/]+).html$ /index.php?sezione=$1
于 2012-06-05T15:13:22.890 回答