使用 .htaccess 从 URL 中删除 index.php?var=
我有一个带有参数的网址。例如:
domain.com/guidelines/index.php?doc=html
我想将其转换为:
domain.com/guidelines/html
我知道 .htaccess 是可能的,但我似乎无法让它工作。
想法?
I have a url with a parameter in it. For instance:
domain.com/guidelines/index.php?doc=html
I want to convert this to:
domain.com/guidelines/html
I know it is possible with .htaccess but I can't seem to get it to work.
Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用
$_GET['doc']
访问 php 中的参数,并让用户看到干净的 url/guidelines/html
,您可以重写如下:To access the param in php with
$_GET['doc']
, and have the user see the clean url/guidelines/html
you can rewrite as follows: