Apache http 服务器重写 url 失败

发布于 2024-12-13 11:41:42 字数 378 浏览 2 评论 0原文

我想将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女 2024-12-20 11:41:42

您可能缺少文档根目录 /home/admin/mf/htdocs 指令:

<Directory /home/admin/mf/htdocs>
  Order allow,deny
  Allow from all
<Directory>

有关详细信息,请参阅 此处

You are probably missing a <Directory> directive for the document root /home/admin/mf/htdocs:

<Directory /home/admin/mf/htdocs>
  Order allow,deny
  Allow from all
<Directory>

For more information see here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文