可能重复:
How to change appearance of URL from within a PHP script
我在地址栏中有这个
本地主机/ somedirectory / main.php?ID = 123456
如何隐藏那些GET变量,因此它变为
本地主机/ somedirectory /主/ 123456
我知道.htaccess是答案,但到目前为止我的尝试都无济于事。有人可以说明如何实现它吗?
答案 0 :(得分:1)
无法以您想要的方式使用PHP!
只有htaccess才能完成这项任务。
RewriteEngine on
RewriteBase /
RewriteRule ^localhost/([^/]*)/([^/]*)/([^/]*)$ localhost/$1/$2.php?id=$3