基于Nginx下的Joomla伪静态Rewrite配置

公认的Nginx的运行效能高于Apache,因此很多用户喜欢在Linux下面搭建Nginx环境进行网站运营。对于Joomla用户来说,Joomla伪静态设置.htaccess是依赖Apache才能运行的。如果使用nginx 则需要进行一些设置才可以实现伪静态效果。

并不复杂,在网站配置时,创建一个/nginx/conf/vhosts/joomla.conf (根据你的实际情况命名xxxx.conf) 文件中复制一下代码:

server {
        listen 80;
        server_name YOUR_DOMAIN;(你要绑定的域名,多个域名用空格分开)
        server_name_in_redirect off;

        access_log /var/log/nginx/localhost.access_log;(设置日志文件)
        error_log /var/log/nginx/localhost.error_log info;(设置日志文件)

        root PATH_ON_SERVER;(网站存放目录)
        index index.php index.html index.htm default.html default.htm;
        # Support Clean (aka Search Engine Friendly) URLs
        location / {
                try_files $uri $uri/ /index.php?$args;
        }

        # 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$ {
            fastcgi_pass  127.0.0.1:9000;
            fastcgi_index index.php;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include /etc/nginx/fastcgi.conf;
        }

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

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

}

(注意:橘色部分根据你的服务器情况而定)

配置完成后,service nginx restart 进行服务重启即可。


六艺团队,致力于提供中国最专业的Joomla建站解决方案!