如何在 htacess 中将 book.html 转换为 book
I have a book.html on my server
I need to access url like that
http://www.domain.com/book
Is that possible?
Thanks
navi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这很简单 mod_rewrite东西。如果您使用启用了 mod_rewrite 的 Apache:
或者,您可以使用 Apache 的 Multiviews 来实现此目的。
That's simple mod_rewrite stuff. If you're using Apache with mod_rewrite enabled:
Alternatively, you could use Apache's Multiviews for this purpose.
,请在
RewriteEngine On
之后写入此内容是的,如果您希望所有 .html 文件都使用此规则 。
写这个
yes write this after
RewriteEngine On
,if you want this rule for all .html files.
write this
具体:
一般:
Specifically:
Generally: