在nginx下Joomla的重写规则

之前在使用Lnmp(Nginx、MySQL、PHP、phpMyAdmin)进行joomla建站的时候,发现joomla的.htaccess文件并不能起作用(因为.htaccess文件是基于Apache服务器的Rewrite模块),于是搜索了一些关于Nginx和joomla的教程,折腾了一段时间,发现都不靠谱的。后来去看joomla的官方文档,才发现自己舍近求远了。

官方文档已经给出了在Nginx服务器下,如何编写Joomla的配置文件,教程原文:

http://docs.joomla.org/Nginx

按照实际情况,把它写在全局的conf文件或者虚拟主机的conf文件,内容如下:

server {
listen 80;
server_name YOUR_DOMAIN;
server_name_in_redirect off;

access_log /var/log/nginx/localhost.access_log main;
error_log /var/log/nginx/localhost.error_log info;

root PATH_ON_SERVER;
index index.php;
# Support Clean (aka Search Engine Friendly) URLs
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}

index index.php index.html index.htm default.html default.htm;
# deny running scripts inside writable directories
location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {
return 403;
error_page 403 /403_error.html;
}

location ~ .*.php$ {
include /etc/nginx/fastcgi.conf;
fastcgi_pass  127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

# caching of files
location ~* \.(ico|pdf|flv)$ {
expires 1y;
}

location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt)$ {
expires 14d;
}

}

记得要把上面内容中的YOUR_DOMAIN替换成你的域名。

文件保存后,需要重启Nginx才能使配置文件生效。