您好,我的网站上有一个锚点。通过调用我的网站,网址将是:
http://site.com/page.php
通过单击一个按钮,网址将显示一个我想隐藏的网址:
http://site.com/page.php#1
现在我发现我可以通过使用 mod_rewrite 工具来改变它。我尝试了这条规则但没有成功:
重写引擎开启
RewriteCond %{REQUEST_URI} ^(.*)\.html$
RewriteRule ^.*\.html$ %1.php [L]
用于将页面调用为 html 或 php 并隐藏#1
在 .php 后面
RewriteRule ^(.*)$ ./php#1=php$1
如果有人可以就如何解决这个问题给我建议,我将不胜感激。多谢。