Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何:用 PHP 重写 URL? 如何在每个页面的地址栏中保持相同的 url?
我正在使用查询字符串将信息传递给页面,但不希望字符串出现在浏览器地址栏中。
www.mysite.co.uk?lp=catlist
已加载,但我只想显示地址栏
www.mysite.co.uk
有没有办法做到这一点?
谢谢
使用 htaccess
Options +FollowSymLinks RewriteEngine On RewriteRule www.mysite.co.uk www.mysite.co.uk?lp=catlist
请改用 POST 变量。这样地址栏中就不会出现任何数据。