我一直在尝试在Amazon实例(Ubuntu)上设置cakephp .. 但是,对应用程序的所有请求都返回404 ..
做错了什么?
此致 Abhishek耆那教
答案 0 :(得分:0)
尝试以下步骤
mod_rewrite
<?php phpinfo();
AllowOverride=All
。检查httpd.conf
。答案 1 :(得分:0)
我在Amazon EC2上配置了Ubuntu Server 14.04 LTS(HVM),SSD卷类型,并配置了Apache Mysql&amp;完成设置后PHP5同样配置CakePHP并在我尝试访问任何页面时出现404错误然后我得到了一个解决方案,我将与你分享...
希望它对你有用..
在Ubuntu上启用mod_rewrite
让我们确保您实际启用了mod_rewrite。在终端提示符下,输入以下内容:
$ sudo a2enmod rewrite
易。它有用吗?如果这么棒!如果没有,请尝试以下几个步骤。再次在终端中,使用以下命令打开以下文件:
$ sudo gedit /etc/apache2/sites-available/default
OR
$ sudo gedit /etc/apache2/sites-available/000-default.conf
现在将AllowOverride值更改为&#34; All&#34;和其他人一起我已经包含了默认安装的文件现在应该是什么样的。
重新启动Apache,您已完成:
$ sudo service apache2 restart
下面是一个带有后面提到的更改的示例文件。
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/html>
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 ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/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>
希望这对你有用......