0

我开发了一个 CakePHP 应用程序,现在已经部署到我的生产服务器上,但是漂亮的 URL 不起作用。

这是我的网站的 Apache 虚拟主机:

<VirtualHost *:80>
       ServerName site.com
    ServerAdmin support@site.com

    DocumentRoot /home/whitey/sites/site.com/htdocs/app/webroot/
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /home/whitey/sites/site.com/htdocs/app/webroot/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /home/whitey/sites/site.com/logs/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /home/whitey/sites/site.com/logs/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

如您所见,文档根目录设置为webroot我的应用程序中的目录。在该目录中,有这个 .htaccess 文件:

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

整个设置与我运行 XAMPP 的本地机器完美配合,所以我不确定出了什么问题。我唯一能想到的是,由于我的虚拟主机中的设置,重写规则没有生效。但是我没有足够的 Apache 配置文件知识来知道如何修复它。

谢谢。

4

1 回答 1

1

没关系,我是个白痴。我昨晚设置时忘记为 Apache 启用 mod_rewrite 模块。这是修复:

sudo a2enmod rewrite
sudo service apache2 restart
于 2012-08-15T03:33:09.110 回答