由于客户的服务器使用了cdn,被别人恶意刷流量, 限制下,但很容易破解,改个参数就要要对应的修改 ``` //判断user-agent是Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0前缀,并且referer不存在或者为空则停止 $user_agent = $_SERVER['HTTP_USER_AGENT']; if (strpos($user_agent, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0') === 0) { if (!isset($_SERVER['HTTP_REFERER']) || empty($_SERVER['HTTP_REFERER'])) { exit; } } ``` 由于客户资金有限,暂时先这样
Where possible begins
希望你喜欢这里。有问题,请提问,或搜索现有帖子。
真诚、友善、团结、专业,共建你我引以为荣之社区。《常见问题解答》
域名不对,增加一个重定向
SEO优化
收录的网址是https://test.aiagentplatforms.top/ai-daohang-daquan-quanmiande-ai-gongju-fenlei-yu-ziyuan ,直接在index.php 增加一个重定向 ``` <?php namespace think; // https://test.aiagentplatforms.top/ai-daohang-daquan-quanmiande-ai-gongju-fenlei-yu-ziyuan //获取当域名是否是aiagentplatforms.top,如果不是,则跳转到https://aiagentplatforms.top/对应链接中 if ($_SERVER['HTTP_HOST'] != 'aiagentplatforms.top') { $url = str_replace($_SERVER['HTTP_HOST'], 'aiagentplatforms.top', $_SERVER['REQUEST_URI']); header('Locat
431
阿里云云虚拟主机配置PHP和Zend扩展组件
子枫cmsX2
配置云虚拟主机的PHP和Zend扩展组件 [https://help.aliyun.com/zh/cloud-web-hosting/user-guide/configuration-of-cloud-hosting-and-zend-php-extension-components?spm=5176.28525400.J_2d9ImNIIBgRqiC15YITY3.2.518e1767nqSY4X#261104ec87zez](https://help.aliyun.com/zh/cloud-web-hosting/user-guide/configuration-of-cloud-hosting-and-zend-php-extension-components?spm=5176.28525400.J_2d9ImNIIBgRqiC15YITY3.2.518e1767nqSY4X#261104ec87zez "https://help.aliyun.com/zh/cloud-web-hosting/user-guide/configuration-of-cloud-hostin
369
沉浸式开发AI导航CMS
AI导航CMS
将会在B站直播,沉浸式开发 [https://live.bilibili.com/22559989](https://live.bilibili.com/22559989 "https://live.bilibili.com/22559989")
388
cursor每次回答后,给出学习建议的提示词
AI
You are an AI coding instructor designed to assist and guide me as I learn to code. Your primary goal is to help me learn programming concepts, best practices, and problem-solving skills while writing code. Always assume I'm a beginner with limited programming knowledge. Follow these guidelines in all interactions: 1. Explain concepts thoroughly but in simple terms, avoiding jargon when possible. 2. When introducing new terms, provide clear definitions and examples. 3. Break down complex p
434
分享一个代码编辑器线上html
讨论专区
 详细代码 ``` <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>代码编辑器演示</title> <script src="https://cdn.tailwindcss.com"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/aja
516
测试aff
讨论专区
你好 https://www.wangmingchang.com/ <span style="display: ruby; padding:0px 10px; background-color: rgb(59 130 246); color: white; text-align: center; font-size: 14px; cursor: pointer; border-radius: 15px;line-height: 10px;"><i class="layui-icon layui-icon-note"></i>AFF</span> https://www.wangmingchang.com/ <span style="display: ruby; padding:0px 10px; background-color: rgb(59 130 246); color: white; text-align: center; font-size: 14px; cursor: pointer; border-radius: 15px;line-heig
509
虚拟机centos7设置dns ,更新源
讨论专区
## 设置dns 查看 https://bbs.jianshe2.com/bbs_detail/295.html ## 更新源 1根据你提供的截图,yum 在尝试访问存储库时出现了问题,提示 Cannot find a valid baseurl for repo: base/7/x86_64。通常这是由于 yum 源配置不正确或网络问题导致无法访问存储库。 修改163源的步骤: 1. 备份原有的Yum源配置文件: 在修改之前,建议先备份原有的Yum源配置,以防出现问题可以恢复: mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak 2. 下载163的Yum源配置文件: 执行以下命令来替换为163的Yum源: wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo 3. 清除缓存并生成新的缓存:
585
PYCURLError 6 - "Couldn't resolve host 'mirrorlist.centos.org'
讨论专区
这个问题是由于无法解析 `mirrorlist.centos.org` 的主机名导致的。具体错误信息显示 `PYCURLError 6 - "Couldn't resolve host 'mirrorlist.centos.org'"`,这通常是网络连接问题或 DNS 配置问题。 你可以尝试以下几种解决方法: 1. **检查网络连接**:确保你的服务器可以访问互联网。可以使用 `ping 8.8.8.8` 来测试网络连接。 2. **检查 DNS 配置**:查看 `/etc/resolv.conf` 文件,确保 DNS 服务器配置正确。可以尝试添加 Google 的公共 DNS: ``` nameserver 8.8.8.8 nameserver 8.8.4.4 ``` 3. **使用其他镜像源**:如果 `mirrorlist.centos.org` 不可用,可以手动编辑 `/etc/yum.repos.d/CentOS-Base.repo` 文件,使用其他可用的镜像源。 4. **清除缓存**:运行 `yum clean
488
CentOS6.1的网易163源
讨论专区
备份 /etc/yum.repos.d/ 文件夹 cp -a /etc/yum.repos.d/ /etc/yum.repos.d.original/ 恢复 /etc/yum.repos.d/ 文件夹 rm -rf /etc/yum.repos.d/* ; cp -af /etc/yum.repos.d.original/* /etc/yum.repos.d/ 用alias将 恢复 /etc/yum.repos.d/ 文件夹 打包成命令别名 alias revertYumRepository='rm -rf /etc/yum.repos.d/* ; cp -af /etc/yum.repos.d.original/* /etc/yum.repos.d/' 进入 /etc/yum.repos.d/ 文件夹 cd /etc/yum.repos.d/ 有三个文件 [root@localhost yum.repos.d]# cd /etc/yum.repos.d/ [root@localhost yum.repos.d]# ls
589
宝塔一键迁移API 删除备份
讨论专区
使用宝塔一键迁移API版本 4.0后,服务器空间满了,需要删除一键迁移造成的备份 路径:/www/server/panel/plugin/psync_api/backup
463
宝塔FTP连接不上的解决方法
讨论专区
1.注意内网IP和外网IP 2.检查ftp服务是否启动 (面板首页即可看到) 3.检查防火墙20端口 ftp 21端口及被动端口39000 - 40000是否放行 (如是腾讯云/阿里云等还需检查安全组) 4.是否主动/被动模式都不能连接 5.新建一个用户看是否能连接 6.修改ftp配置文件 将ForcePassiveIP前面的#去掉 将192.168.0.1替换成你服务器的外网IP
476
宝塔5.9 7.3版本安装
讨论专区
相关链接: https://www.bt.cn/bbs/thread-1186-1-1.html 安装要求: Python版本: 2.6/2.7(安装宝塔时会自动安装) 内存:128M以上,推荐512M以上(纯面板约占系统10M内存) 硬盘:100M以上可用硬盘空间(纯面板约占20M磁盘空间) 系统:CentOS 6.x / 7.x (Ubuntu、Debian、Fedora 请点这里), 确保是干净的操作系统,不支持32位系统,没有安装过其它环境带的Apache/Nginx/php/MySQL(已有环境不可安装) 以下主机商必看(开端口教程,不开不能用): 腾讯云:https://www.bt.cn/bbs/thread-1229-1-1.html 阿里云:https://www.bt.cn/bbs/thread-2897-1-1.html 华为云:https://www.bt.cn/bbs/thread-3923-1-1.html 5.9是早期版本,不推荐安装,强烈推荐安装7.3版本 以下是l
588
2024年10月21日中国大陆终止个人Azure OpenAI服务。只有企业才能使用, 还好我的中转站有多个渠道
讨论专区
2024年10月21日中国大陆终止个人Azure OpenAI服务。只有企业才能使用, 还好我的中转站有多个渠道 https://api.bigmodel.org/ 可选择分组使用,部分分组甚至比官方便宜 注册送免费额度 
516
思源笔记使用雨云S3
讨论专区
1. 先注册雨云账号 https://www.rainyun.com/zifeng_ 2. 创建存储 https://app.rainyun.com/apps/ros/list 3. 找到刚创建的存储-->打开-->找到信息与监控 对应填写如下  初次需要点击左上角小云朵 同步一次
492