gpt4 book ai didi

php - Ubuntu/Apache2/Forbidden/权限错误

转载 作者:可可西里 更新时间:2023-11-01 01:06:59 25 4
gpt4 key购买 nike

我有安装了 Lamp 的 Ubuntu 11.10

有些文件我无法从我的网络目录“/var/www”访问

http://localhost/banner/banner.html我收到一个错误:

Forbidden You don't have permission to access /banner/banner.html on this server. Apache/2.2.20 (Ubuntu) Server at localhost Port 80

我可以正常访问/var/www/index.php,因为我也可以从我的浏览器正常浏览/var/www/banner

这是一个小小的和平:

    a1a4a@A1A4a:~$ ls -l /var/www
total 7088
-rwxrwxrwx 1 root root 916 2011-11-25 20:49 access-controlled.php
-rw-r--r-- 1 root root 22163 2011-12-16 22:28 account_info.php
-rw-r--r-- 1 root root 22126 2011-12-16 22:27 account_info.php~
-rw-r--r-- 1 root root 16585 2011-12-16 21:32 acount_info.php
-rw-r--r-- 1 root root 0 2011-12-16 21:28 acount_info.php~
drwxrwxrwx 5 root root 4096 2011-12-09 23:03 banner
drwxrwxrwx 2 root root 4096 2011-12-09 23:03 css

    a1a4a@A1A4a:~$ ls -l /var/www/banner
total 20
-rw--w---- 1 root root 2564 2011-11-25 20:51 banner.html
drwx-w---- 4 root root 4096 2011-12-09 23:03 examples
drwx-w---- 2 root root 4096 2011-12-09 23:03 lib
drwx-w---- 4 root root 4096 2011-12-09 23:03 skins
-rw--w---- 1 root root 1431 2011-11-25 20:51 style.css

这是我的配置:

    <VirtualHost *:80>
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

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>

我的“nano/etc/apache2/apache2.conf”设置为默认...

如何让我的所有/var/www 文件(文件夹和子文件夹和文件)都可以从我的浏览器访问,就像我在使用 Wamp 的 Windows 机器上一样......

P.S:我将在 Windows 机器上托管网站,我使用 ubuntu 只是为了编码。

最佳答案

在 ubuntu 上运行 apache deamon 的用户就是 www-data(就像在大多数基于 debian 的系统中一样),至少需要文件的读取权限。但正如您发布的那样,只有所有者 root 和组 root 具有读取权限。

实际上所有者 rootrwrootr

因此实际运行网络服务器 (www-data) 的用户属于其他没有权限的用户。

要么执行 chmod -R o+r/var/www/banner/* 要么执行 chown -R www-data/var/www/banner 来修复那个。

关于php - Ubuntu/Apache2/Forbidden/权限错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8558706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com