【发布时间】:2014-09-27 16:19:17
【问题描述】:
我是 linux 环境的新手。我已经安装了 debian os 和 apache2 服务器。我一直在做一个代码点火器项目。我的问题是,我能够在代码点火器中呈现索引文件。但是如果我进入像 localhost/login 或 localhost/register 这样的内页,我会得到这个
The requested url not found on this server
错误。如何克服这个?
这是我的 apache2/sites-enabled/000-default
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
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
【问题讨论】:
标签: php linux apache debian http-status-code-404