Rewriting friendly URL's using .htaccess [duplicate]
Possible Duplicate:
Shorten the URL from example.com/page.php?var=letters to example.com/letters
Using htaccess, is it possible to redirect from:
http://www.mydomain/123456
to
http://www.mydomain/myscript.php?id=123456
Any help would be much appreciated.
You can use rewrite mod :
RewriteRule ^(\d+)$ myscript.php?id=$1
精彩评论