5

我目前在使用 URL 管理器和/或 apache mod_rewrite 或完全其他的东西时遇到问题。

将 showScriptName 设置为 false 时,导航到 domain.com/login、domain.com/logout、domain.com/site/login 等地址的行为都相同。它只是显示主站点/索引,就好像我要导航到 domain.com/eeofjew9j8jfdedfmewf (jibberish)。

也许这是我的 Yii 设置的问题?以下是那些(抱歉草率):

'components'=>array(
   'urlManager'=>array(
      'urlFormat'=>'path',
      'showScriptName'=>false,
      'rules'=>array(
          '<controller:\w+>/<id:\d+>'=>'<controller>/view',
          '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
          '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
          'login'=>'site/login',
          'logout'=>'site/logout',
          'register'=>'users/register'
      ),
  ,...

这是我在 www 根目录中设置 .htaccess 的方式:

RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php

我正在使用 VPS 服务器,因此我具有 root 访问权限来对 apache 进行任何所需的更改。我检查了我的 phpinfo 并且 mod_rewrite 正在运行并启用。在我的 apache 配置中,我有 www 目录:

AllowOverride All
Options Indexes FollowSymLinks MultiViews
Order allow,deny
Allow from all

我一直在通过 3 个不同的主机(godaddy、dreamhost 和锂主机)在这个问题上摸不着头脑,所以我假设这是我的问题。既然我有一个 VPS,我希望我能最终找出我的问题并解决它。

4

3 回答 3

2

首先验证服务器是否正在解析 .htaccess 文件。这只需在 .htaccess 文件中放置随机文本即可完成,例如

CREATE AN ERROR

如果这给您一个服务器错误,那么文件正在被解析。您可能必须将 .htaccess 文件上移到一个目录才能使其正常工作。

在此之后检查以确保 Apache 中的重写模块已打开。首先检查 phpinfo 并查找正在运行的模块。如果不是,您可能必须删除模块前面的注释 (#) 字符。

在模块显示在 phpinfo 中之后,看看您是否可以进行基本的重写以确保 Apache 没有问题。

RewriteEngine on
RewriteRule ^ http://google.com/? [L,R]

如果这不起作用,请尝试添加

Options +SymLinksIfOwnerMatch

到文件

一旦你让 Apache 做它的一部分,现在它取决于 yii。这段代码:

RewriteEngine On
RewriteBase /mybasedirectory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php/$1 [L,QSA]

添加 rewrite base 选项,如果您在文档根目录中没有文件(例如 htdocs),这可能是必需的

最后,如果那不能解决问题,那么将您的规则限制为一个简单的规则,例如

      'contact'=>'site/contact',

看看是否至少重定向到您认为应该的位置。当然,您可能需要再次检查 .htaccess 的基本规则,以确保允许覆盖并且子目录中没有错误的 .htaccess。我希望这会有所帮助。我终于开始工作了。

于 2013-09-11T21:24:19.823 回答
1

如果删除这些行会发生什么!

enter code here
    # otherwise forward it to index.php
    RewriteRule . index.php
于 2013-04-26T00:04:36.733 回答
1

如果您添加此代码,请查看它是否有效

'<action:(login|logout|register|contact)>' => 'site/<action>',
于 2013-04-26T01:54:13.760 回答