bcloud_nginx_user.conf为用户自定义配置文件。用户可在程序根目录下,创建bcloud_nginx_user.conf文件,在文件里写入自定义配置。BCH支持server级别以下的自定义配置。
pbootcms伪静态设置
{pboot:pre}
#1.X版本使用如下规则: location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$1 last; } } #2.X+版本使用如下规则: location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?p=$1 last; } }
{/pboot:pre}
禁止访问模板目录下的以 .html 结尾的文件
{pboot:pre}
location ~ ^/(template)/.*.(html)$ { deny all; }
{/pboot:pre}
禁止访问某些系统文件
{pboot:pre}
location ~* .(ini|cfg|dwt|lbi|rar|gz|tar|sql)$ { deny all; }
{/pboot:pre}
以上为苏州网站建设常用的一些百度云BCH的conf设置,之后再有别的设置,我会继续更新。。。