c_cpp Nginx非WordPress站点的常见配置。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp Nginx非WordPress站点的常见配置。相关的知识,希望对你有一定的参考价值。
#server {
# listen 80;
# root /srv/www/mysite;
index index.php index.html index.htm;
# server_name www.mysite.com;
location / {
try_files $uri $uri/ /index.html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri = 404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SERVER_PORT 80; # Avoids PHP from sending port in headers.
}
location ~ /\.ht {
deny all;
}
#}
以上是关于c_cpp Nginx非WordPress站点的常见配置。的主要内容,如果未能解决你的问题,请参考以下文章
使用非 www 域安装 Plesk WordPress 多站点
Nginx位置正则表达式来处理/ sub /目录中多个WordPress站点的永久链接
Nginx 实践案例(源码编译安装方式):利用LNMP搭建wordpress站点
利用LNMP实现wordpress站点搭建
wordpress博客站点配置及数据库迁移
Nginx配置https的wordpress站点,wp-content目录下资源404解决方案