我将如何在.htaccess中重写:
url.com/NAME to url.com/view.php?=NAME
我尝试了几种变化,但我想我可能会在错误的地方放一个斜线。有什么建议吗?
答案 0 :(得分:1)
RewriteEngine on
RewriteRule ^(\w+)$ /view.php?somevar=$1 [L]
您必须将NAME设置为某个变量的值。
这个例子允许NAME成为任何单词..如果你想要特定的东西......只需将\ w +替换为你想要的任何特定的东西。