WordPress(版本4.9.1)
nginx / 1.10.3(Ubuntu)
我第一次尝试在本地运行WordPress。 我按照这个指示: https://codex.wordpress.org/Installing_WordPress
我遇到了第5步:运行安装脚本。
我已将其下载并解压缩到/ var / www / wordpress。
下面是nginx conf。
site.conf
server {
root /var/www/wordpress;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args; # permalinks
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
当我访问http://localhost/wp-admin/install.php时,我会看到一个空页。
即:
请求标题
GET /wp-admin/install.php HTTP/1.1
Host: localhost
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36
Upgrade-Insecure-Requests: 1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
回复标题
HTTP / 1.1 200好的 服务器:nginx / 1.10.3(Ubuntu) 日期:2017年12月14日星期四13:51:16 GMT 内容类型:text / html;字符集= UTF-8 转移编码:分块 连接:保持活力 内容编码:gzip
Nginx错误日志为空。
Nginx访问日志:
127.0.0.1 - - [14/Dec/2017:16:51:16 +0300] "GET /favicon.ico HTTP/1.1" 200 31 "http://localhost/wp-admin/install.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36"
好吧,WordPress似乎已经做出回应。但似乎没有开始安装过程。
你能在这帮我吗?答案 0 :(得分:-1)
你们在这里做得很好!
你刚刚发错了网址。触发url并检查它是否正常工作。
http://localhost/wordpress/
谢谢!