joomla 在Niginx下的rewrite规则很简单,主要就是红色部分
如果出现502错误,请参看前一篇介绍
server {
server_name www.xxx.com;
root /home/xxx/www/www.xxx.com;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php?q=$request_uri;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
原创文章,转载请注明: 转载自贝壳博客
本文链接地址: Joomla Nginx rewrite