我在VMware中拥有centos并托管了一个Web应用程序。 这是我尝试访问我的页面的网址。还有另一个演示页面" demo.php"我为测试创建的。它的罚款可以访问和打印内容:"它没关系。"但当我尝试访问浏览器所在的同一目录中的应用页面时:
Forbidden
You don't have permission to access /WP/View/Home/localobjects.php on this server.
http://192.168.118.129/WP/View/Home/localobjects.php
我该如何解决这个问题?
目录中的文件权限。
-rw-r--rwx. 1 root root 272 Apr 2 00:49 activedirectoryusers.php
-rw-r--rwx. 1 root root 236 Apr 17 01:22 configuration.php
-rw-r--rwx. 1 root root 324 Mar 30 00:59 dashboard.php
-rw-r--r--. 1 root root 107 Apr 15 08:28 deneme.php
drwxr-xrwx. 2 root root 4096 Apr 17 01:22 Ipageimplementations
-rw-r--rwx. 1 root root 257 Apr 17 00:52 localobjects.php
-rw-r--rwx. 1 root root 224 Mar 28 18:41 policy.php
-rw-r--rwx. 1 root root 257 Apr 13 01:58 timeintervals.php
答案 0 :(得分:0)
这是一张备忘单......
目录必须具有权限" drwxr-xr-x"。
您可以使用chmod 755 [directory name]
设置它们。
文件必须具有权限" -rw-r - r - "。
您可以使用chmod 644 *php
为文件夹中的所有php文件设置它们。如果你有其他必须在网上看到的文件(.css等),请相应地chmod。
获得"魔术数字"你有三位数:
数字是以下的总和:
有疑问,请一次创建一个目录:如果您将错误的权限(不可执行文件,如文件)提供给文件夹,则无法浏览。