这是我目前的链接: http://localhost/htaccess_url/home.php?pnlk=adindex
我想像这样显示网址:http://localhost/htaccess_url/adindex。
我试过htacces。我的代码是:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ home.php?route=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ home.php?route=$1
请帮帮我。我是这个领域的新人。
谢谢。
答案 0 :(得分:1)
你可以使用这个htaccess文件:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)$ home.php?pnlk=$1 [L]
但请注意,您路由网址,这意味着旧网址仍在工作
路由http://localhost/htaccess_url/home.php?pnlk=adindex
到
http://localhost/htaccess_url/adindex
希望这个帮助