lnmp thinkphp 域名配置

server
    {
        listen 80;
        #listen [::]:80;
        server_name domain.com ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/domain.com/public;

        include rewrite/thinkphp.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php-pathinfo.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/xinli.eepu.top.log;
    }

Add a Comment

您的电子邮箱地址不会被公开。