【发布时间】:2023-03-18 11:08:01
【问题描述】:
我正在尝试重定向在我的 Apache Web 服务器上收到的 URL。基本上当我输入
localhost/index.html
我希望网站将我重定向到 htdocs 中的 readme.html 文件。 index.html 和 readme.html 文件都保存在 htdocs 中。我查看了 Apache 文档,但似乎无法正常工作。下面我在httpd.conf 文件中包含了到目前为止我编写的代码。
DocumentRoot "usr/local/apache2/htdocs"
<Directory "/htdocs">
Options FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
RewriteEngine On
RewriteBase /
RewriteRule ^index.html readme.html [PT]
</Directory>
我已尝试在浏览器上查找 "localhost/index.html" ,但我看到的是 index.html 页面。除非我看错了。 谢谢
【问题讨论】:
标签: apache mod-rewrite server-side httpd.conf