使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装(2)

将以下文本放入文件中。 用您自己的域名替换红色文本。 不要忘记为您的域名创建A记录。

server { listen 80; server_name linuxidc.com; root /usr/share/nginx/linuxidc.com/; index index.php index.html index.htm index.nginx-debian.html; location / { try_files $uri $uri/ /index.php; } error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { fastcgi_pass unix:/run/php/php7.1-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; include snippets/fastcgi-php.conf; } location ~ /\.ht { deny all; } }

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装WordPr

请注意,如果您遵循我的LEMP教程并安装了PHP7.2,则可以将php7.1-fpm.sock更改为php7.2-fpm.sock,以使Nginx使用PHP7.2。

保存并关闭文件。 然后测试Nginx配置。

sudo nginx -t

如果测试成功,请重新加载Nginx。

sudo systemctl reload nginx

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装WordPr

最后一步:运行WordPress安装向导

在浏览器地址栏中输入您的域名。 你会看到WordPress的安装向导。 选择一种语言。

linuxidc.com

或者

linuxidc.com/wp-admin/install.php

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装

如果未显示安装向导,则可能需要安装一些PHP7扩展。

sudo apt install php7.1-mbstring php7.1-xml php7.1-mysql php7.1-common php7.1-gd php7.1-json php7.1-cli php7.1-curl

然后重新加载PHP-FPM和Nginx。 现在应该显示向导。

sudo systemctl reload php7.1-fpm sudo systemctl reload Nginx

创建一个管理员帐户,然后点击安装WordPress按钮。

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装WordPr

而现在你的新的WordPress网站已经安装。

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装WordPr

如何将www重定向到非www

我们创建的Nginx配置允许网站访问者通过www和非www域访问网站。 您可以通过转到WordPress仪表板>设置>常规将一个版本重定向到另一个版本。 然后将WordPress地址和网站地址设置为您的首选版本。

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装WordPr

使用Nginx,MariaDB,PHP7.1(LEMP)在Ubuntu 17.10上安装WordPr

我希望这个教程帮助你在Ubuntu 17.10上安装Nginx,MariaDB和PHP7.1(LEMP环境)的WordPress。 与往常一样,如果你发现这篇文章有用,请分享给更多的朋友。

完整PDF文档可以到Linux公社资源站下载:

------------------------------------------分割线------------------------------------------

免费下载地址在

用户名与密码都是

具体下载目录在 /2017年资料/12月/18日/Ubuntu 17.10上安装LEMP环境(Nginx,MariaDB,PHP7.1)/

下载方法见

------------------------------------------分割线------------------------------------------

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/eb37c024b48ae1313ae1f6b267101905.html