我在我的Nginx服务器上安装了10月CMS,安装正常。前端与index.php一起使用,样式正确。但是后端没有。它只是给我一个404页错误。我已经正确地关注了文档上的所有内容,尝试了不同的网站 - 可用的配置文件,它们似乎无法正常工作但是给了502,我已经检查了日志,并且没有任何内容。
这是我的one3.com配置文件:
server {
listen 80;
root /storage/www/one3community.com;
index index.php index.html index.htm;
listen 443;
ssl on;
ssl_certificate /ssl_keys/one3community.com/public.pem;
ssl_certificate_key /ssl_keys/one3community.com/private.pem;
# Make site accessible from http://localhost/
server_name www.one3community.com;
location / {
try_files $uri $uri.html $uri/ @extensionless-php;
index index.php;
}
location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php5.5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
答案 0 :(得分:0)
将默认的apache .htaccess文件转换为Nginx。加载到site-available .conf文件重启nginx。现在开始运行。
**必须在nginx文件中用last替换每个break,否则会导致文件下载**