0

我已经购买了带有 level1 的主机 gator vps 服务器,并且必须在上面部署我的 zend 应用程序,但是我的重写规则不起作用,我尝试了最简单的

RewriteRule ^test.html http://www.google.com [NC,L]

但没有运气

我在 httpd.conf 中重写了引擎,并且AcssesFile .htaccess在这里检查了设置是我的 .htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

我已经提出了票,但他们不会在 1 级套餐上帮助我:) ...任何建议或指导都会非常有帮助

4

2 回答 2

1

您是否允许在您的 httpd.conf 文件中覆盖?

Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
AllowOverride All

如果它设置为 none 则您不能使用 htaccess 文件。将其更改为全部。

于 2012-08-28T12:30:46.363 回答
0

啊得到了解决方案:我没有在 httpd.conf 中配置虚拟主机现在一切正常 -

于 2012-11-27T08:56:32.807 回答