简单的重写规则不适用于第三级域

时间:2014-12-02 13:51:42

标签: php apache .htaccess mod-rewrite

我有这些htaccess规则的第三级域名 m.numeroverde.com

RewriteEngine On
RewriteBase /
RewriteRule ^home/?$ index.php

ErrorDocument 404 /404.html

404错误页面在实际404页面上正确显示,但 m.numeroverde.com/home 也被识别为404页面,当它应链接到index.php页面。

我是否必须在我的htaccess中为第三级域写一些东西?

1 个答案:

答案 0 :(得分:0)

因此,经过尝试和尝试,尝试解决我的问题所需的字符串是:

Options -MultiViews

位于我的htaccess顶部(这里是帮助我了解http://alexcican.com/post/how-to-remove-php-html-htm-extensions-with-htaccess/的帖子)