可能重复:
Shorten the URL from example.com/page.php?var=letters to example.com/letters
使用htaccess,可以从以下位置重定向:
http://www.mydomain/123456
到
http://www.mydomain/myscript.php?id=123456
非常感谢任何帮助。
答案 0 :(得分:1)
您可以使用重写mod:
RewriteRule ^(\d+)$ myscript.php?id=$1