magento 装完插件显示404错误

其实登出再登入后台管理见面就好了

Read More

nginx运行下的joomla的url rewrite 规则

经常会用到,备忘一下先

       location / {
        if ( $args ~ "mosConfig_[a-zA-Z_]{1,21}(=|\%3d)" ) {
        set $args "";
        rewrite ^.*$ http://$host/index.php last;
        return 403;}

        if ( $args ~ "base64_encode.*\(.*\)") {
        set $args "";
        rewrite ^.*$ http://$host/index.php last;
        return 403;}

        if ( $args ~ "(\<|%3C).*script.*(\>|%3E)") {
        set $args "";
        rewrite ^.*$ http://$host/index.php last;
        return 403;}

        if ( $args ~ "GLOBALS(=|\[|\%[0-9A-Z]{0,2})") {
        set $args "";
        rewrite ^.*$ http://$host/index.php last;
        return 403;}

        if ( $args ~ "_REQUEST(=|\[|\%[0-9A-Z]{0,2})") {
        set $args "";
        rewrite ^.*$ http://$host/index.php last;
        return 403;}

        if (!-e $request_filename) {

        rewrite (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ /index.php last;
        break;
        }
}
Read More