如何将我的网址更改为用户友好的网址
可能的重复:
mod_rewrite - 如何重写 URL?
大家好,你们中的任何人都可以提出建议吗 ?我了解如何将我的页面 http://testsite.com/about.php 重定向到 http://testsite.com/about/ 通过使用ht访问重写规则,页面中不使用任何查询字符串url我需要重写它。
Possible Duplicate:
mod_rewrite - how to rewrite an URL?
Hi can anyone of you suggest me on how to redirect my page http://testsite.com/about.php to http://testsite.com/about/ by using ht access rewrite rules,without using any query string in the page url I need to rewrite it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前尚不清楚您想要实现什么目标。
以下内容将为 http://example.com/about/ 的所有请求提供 about.php 服务。用户不会注意到任何事情。这是你想做的吗?
It's not really clear what you want to achieve.
The following will serve about.php for all requests to
http://example.com/about/
. The user won't notice anything. Is this what you want to do?您可以非常简单地使用
MultiViews
达到这样的结果You could very simply use
MultiViews
to achieve such a result