使用php5-fpm为joomla站点配置nginx

时间:2016-04-15 22:41:33

标签: php nginx joomla

我正在尝试使用php5-fpm和nginx在joomla3上建立网站。它工作,但只有主页。其他具有.html扩展名的页面如'/reports/april.html'不起作用,它返回404未找到错误。我想在我的nginx配置文件中遗漏了一些内容,请给我一个提示。

server{
    server_name acbr.loc;
     access_log /var/log/nginx/acbr.access.log;
     error_log  /var/log/nginx/acbr.error.log;

     root /home/oleshko/design/acbr;

     location ~ \.php$ {
         try_files $uri = 404;
         include fastcgi_params;
         fastcgi_pass  unix:/var/run/php5-fpm.sock;
         fastcgi_index index.php;
         fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
     }

# порядок индексов    
     location /
     {
         index  index.php index.html index.htm;
     }     
}

1 个答案:

答案 0 :(得分:0)

docs.joomla.org/Nginx 关闭原因)))