老A
发表于 2017-12-7 20:14:27
"
我见别人的支持哦
totabc
发表于 2017-12-7 20:12:00
我的好像没问题哦,看看https://www.ap79.cn
老A
发表于 2017-12-7 20:19:26
"
大佬你也是用BT搭建的?css那些有改啥的吗?
leaveoff
发表于 2017-12-7 20:13:00
老A 发表于 2017-12-7 20:23
我见别人的支持哦
别人都是买的吧,要么就是破解版的。
feya
发表于 2017-12-7 20:20:39
我的没问题
darksheen
发表于 2017-12-7 20:21:13
免费的完全没问题。用的军哥lnmp
totabc
发表于 2017-12-7 20:06:00
老A 发表于 2017-12-7 20:51
大佬你也是用BT搭建的?css那些有改啥的吗?
没有改动。也就加了个伪静态
老A
发表于 2017-12-7 20:23:12
"
也是跟帖子那个伪静态一样的?
老Atotabc
发表于 2017-12-7 20:20:00
"
大佬那个主页文字呀标题呀在哪里改
老A 发表于 2017-12-7 21:06
也是跟帖子那个伪静态一样的?
恩,对的,没错
ANYMOZ
发表于 2017-12-7 20:44:40
试试这个伪静态规则
[*]# Chevereto Nginx rewrite rules
[*]# Make sure to place these inside your server{} block
[*]
[*]# Disable access to .ht* files
[*]location ~ /\.ht {
[*] deny all;
[*]}
[*]
[*]# Disable access to sensitive files in app path
[*]location ~ /(app|content|lib)/.*\.(po|php|lock|sql)$ {
[*] deny all;
[*]}
[*]
[*]# Disable log on not found images + image replacement
[*]location ~* (jpe?g|png|gif) {
[*] log_not_found off;
[*] error_page 404 /content/images/system/default/404.gif;
[*]}
[*]
[*]# Enable CORS header (needed for CDN)
[*]location ~* \.(ttf|ttc|otf|eot|woff|woff2|css|js)$ {
[*] add_header Access-Control-Allow-Origin "*";
[*]}
[*]
[*]# Force serve upload path as static content (match your upload folder if needed)
[*]location /images {}
[*]
[*]# Route dynamic request to index.php
[*]location / {
[*] try_files $uri $uri/ /index.php?$query_string;
[*]}复制代码