mac本地基于nginx搭建wordPress的一些问题
问题描述
nginx是用brew安装的,nginx version: nginx/1.10.2
wordpress 也是最新版,是在官网下载的tar包解压的
在nginx的server文件夹下设置好root、index文件之后,通过浏览器访问wordpress的wp-admin/install.php,
然后出现了奇葩的问题,访问的结果不是正常打开网页,而是将install.php文件重新下载了一遍!!!!求教是可能的那个地方有问题。主要是没有报错,也不知道如何下手去搜索这种情况,于是来提问了,谢谢!
nginx.conf 配置(是默认的没有修改过)
#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pidlogs/nginx.pid;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; #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 logs/access.log main; sendfileon; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server {listen 8080;server_name localhost;#charset koi8-r;#access_log logs/host.access.log main;location / { root html; index index.html index.htm;}#error_page 404 /404.html;# redirect server error pages to the static page /50x.html#error_page 500 502 503 504 /50x.html;location = /50x.html { root html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ .php$ {# proxy_pass http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ .php$ {# root html;# fastcgi_pass 127.0.0.1:9000;# fastcgi_index index.php;# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;# includefastcgi_params;#}# deny access to .htaccess files, if Apache’s document root# concurs with nginx’s one##location ~ /.ht {# deny all;#} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { #root html; #index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { #root html; #index index.html index.htm; # } #} include servers/*;}
我额外设置的word_press.conf
server { listen 8081; server_name console.word-press.local; #绑定域名 location ~ .php$ {root /Users/lights/easyops/wordpress; #网站根目录index index.php index.html index.htm; #默认文件# root html;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;includefastcgi_params; }}
问题解答
回答1:请贴一下你的nginx相关server配置的内容
这个问题要么是php-fpm没有设置,要么是try_files设置错误
回答2:你的PHP在Nginx里配置有问题,也就是说你本地的WEB服务器环境配置没有配置好,Nginx根本就无法解析.php文件!建议你搭建好Mac本地的Web环境后再安装 WordPress !
相关文章:
1. debian - docker依赖的aufs-tools源码哪里可以找到啊?2. css - 关于input标签disabled问题3. html5 - 百度Ueditor代码高亮和代码段滚动条冲突是怎么回事?4. javascript - 关于一段 for 循环代码执行顺序的问题5. javascript - 静态页面引公共头尾文件,js怎么写吖?6. java - 为什么要将Runnable接口的子类对象传递给Thread的构造函数?7. docker api 开发的端口怎么获取?8. javascript - vue 数据更新了。但是dom没有更新,,,,,如图9. 如何调整IDEA中直接运行java程序的日志输出级别?10. java基础,求解答。