WordPress wp-admin目录下所有的东西都能工作 但是index.php不能访问

阅读 4k
2 个回答

首先权限不是越大越好,nginx要能有权限访问到wordpress目录才行。你这个应该有两个问题:

  1. nginx中配置index.php默认带上

可以参考https://www.cnblogs.com/jiqin...

  1. nginx执行用户要和wordpress文件权限所有者用户一致

首先可以在nginx.conf文件头部设置的user是什么,或者通过命令ps axu|grep nginx查看nginx: worker process对应一行,最左侧一列显示的是什么。

wordpress目录执行ls -l可以看到如下位置就是文件权限所拥有的用户。
clipboard.png

假设我们看到的是www,可以执行chown -R www:www ./wordpress修改目录权限。


猜测大概的原因是这样,中间设置权限以及nginx配置也可以多百度下。

这是系统上的结果:

[root@VM_0_10_centos html]# ps axu|grep nginx
root      1024  0.0  0.2 125792  5368 ?        Ss   12:24   0:00 nginx: master process /usr/sbin/nginx
nginx    19607  0.0  0.2 128328  4728 ?        S    17:58   0:00 nginx: worker process
root     21906  0.0  0.0 112708   980 pts/0    R+   18:12   0:00 grep --color=auto nginx

[root@VM_0_10_centos html]# cd /usr/share/nginx/html/
[root@VM_0_10_centos html]# ls -l
total 24
-rw-r--r-- 1 nginx nginx 3650 May 10 16:08 404.html
-rw-r--r-- 1 nginx nginx 3693 May 10 16:08 50x.html
lrwxrwxrwx 1 nginx nginx   19 Sep 12 10:02 drupal -> /usr/share/drupal7/
-rw-r--r-- 1 nginx nginx 3700 May 10 16:08 index.html
-rw-r--r-- 1 nginx nginx  368 May 10 16:08 nginx-logo.png
-rw-r--r-- 1 nginx nginx 2811 May 10 16:08 poweredby.png
-rw-r--r-- 1 nginx nginx   20 Sep 11 17:13 test.php
lrwxrwxrwx 1 nginx nginx   21 Sep 11 17:17 wordpress -> /usr/share/wordpress/

我已经重启了nginx和php-fpm,下面是nginx.conf文件的内容:

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  localhost;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        location ~ \.php$ {
            root           /usr/share/nginx/html/;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题