这是我现有的HTACCESS代码,但没有用:
RewriteEngine On
RewriteRule ^([^/d]+)/?$ index.php?id=$1 [QSA]
我怎样才能把它放在哪里:
http://www.example.com/index.php?id=100
变为:
http://www.example.com/100
答案 0 :(得分:0)
您可以在.htaccess
文件中使用此功能:
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?id=$1 [L]
它将为您留下网址:http://www.example.com/100
。在测试之前,请确保清除缓存。