无法使用LAMP查看虚拟主机的子目录

时间:2013-01-22 23:10:38

标签: linux apache lamp

我最近切换到Linux(Ubuntu 12.10)并运行LAMP服务器进行开发。

我创建了一个虚拟主机,我可以访问www下的所有文件。问题是我无法访问www的任何子目录。我已经习惯了WAMP,这些文件夹在localhost的索引中可用。

您可以在下面看到虚拟主机的配置。

    ServerAdmin webmaster @ localhost

DocumentRoot /home/wip/www/

<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

<Directory /home/wip/www>
Options Indexes FollowSymLinks
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</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 /var/log/apache2/error.log

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

CustomLog /var/log/apache2/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>

有人遇到过类似的问题吗?谷歌搜索产生了很多答案,包括检查权限,访问文件等。这些似乎都不是我的问题。

0 个答案:

没有答案