Skip to content
lotro@live.cn
  • 顺遂无虞 皆得所愿

Joomla在Nginx下的伪静态规则

凡叔 2013-07-17 0 7
☖

百度上搜到的Joomla的nginx伪静态规则很多都是错的,其实Joomla官方已经提供正确的规则,如下

代码中只有前一个location是伪静态规则,此规则适合2.5.x和3.x版本。

# 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;
        }
# caching of files
        location ~* \.(ico|pdf|flv)$ {
                expires 1y;
        }
Joomla

发表回复 取消回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理。

© 2026 吉喜. Theme by Rabbit Lite.