标签: .htaccess mod-rewrite
我应该如何写入htaccess文件来重写
http://mySite/index.php?id=55 如http://mySite/55 ??
55只是一个例子,但每个id都会有所不同。
答案 0 :(得分:1)
在文档根目录中的htaccess
RewriteEngine on RewriteRule ^([^./]+)$ /index.php?id=$1 [L]
这样您就可以使用“/ number”访问“/index.php?id=numbr”。