代码拉取完成,页面将自动刷新
同步操作将从 www.tpframe.com/tpframe 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# 该配置文件为nginx配置参考,请根据自己的情况进行相应的调整
# 通常放置在/etc/nginx/conf.d下 或 /usr/local/nginx/conf/nginx.conf 或 vhost目录(域名单独配置),主要配置如下
server{
listen 80;
server_name demo.tpframe.com;
root /home/www/tpframe; # 此为你的网站根目录
location / {
index index.php index.html index.htm;
#重写规则配置
if (!-e $request_filename)
{
#地址作为将参数rewrite到index.php上。
rewrite ^/(.*)$ /index.php?s=$1 last;
#若是子目录则使用下面这句,将subdir改成目录名称即可,不建议放子目录
#rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1 last;
}
}
#下面是设置访问权限的一些配置
location ~*/(coreframe|application|extend) {
return 404;
}
location ~*\/theme\/frontend\/(.*).(html|php)$ {
return 404;
}
location ~*\/theme\/backend\/(.*).(html|php)$ {
return 404;
}
location ~* ^\/(data|addon)\/(.*).(html|php)$ {
return 404;
}
#记住一定要放到如下配置文件的上面才生效(下面是不要的)
location ~ [^/]\.php(/|$) {
...
}
location ~ .php(/|$) {
...
}
# 省略其它配置文件...
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。