Apache http 服务器重写 url 失败
我想将 http://www.example.com/index.htm
重定向到 本地文件:/home/admin/mf/htdocs/default.htm 在httpd.conf中配置apache服务器如下,但它不起作用,有什么问题 与我的配置?
Listen 80
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.example.com
DocumentRoot /home/admin/mf/htdocs
RewriteEngine on
RewriteRule ^/index.htm /default.htm
</VirtualHost>
I want to redirect the http://www.example.com/index.htm
to
local file: /home/admin/mf/htdocs/default.htm
config the apache server in httpd.conf as below, but it does't work, any problem
with my configuration?
Listen 80
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.example.com
DocumentRoot /home/admin/mf/htdocs
RewriteEngine on
RewriteRule ^/index.htm /default.htm
</VirtualHost>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能缺少文档根目录
/home/admin/mf/htdocs
的
指令:有关详细信息,请参阅 此处。
You are probably missing a
<Directory>
directive for the document root/home/admin/mf/htdocs
:For more information see here.