1 Star 1 Fork 1

juheli/zhlphp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.htaccess 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
lyy 提交于 2024-04-11 00:10 . 文档更新
<IfModule mod_rewrite.c>
# 启用重写功能
RewriteEngine On
# 检查连接是HTTP请求类型时继续执行
#RewriteCond %{HTTPS} off
# 重写链接启用HTTPS请求
#RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# 判断没有www时,[NC]是不区分大小写的匹配
#RewriteCond %{HTTP_HOST} !^www\. [NC]
# 如果没有www以下规则会抓住它,将任何请求重写使用www
#RewriteRule .* http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# 不是以下目录和文件时
RewriteCond %{REQUEST_URI} !(public|uploads|job)
RewriteCond %{REQUEST_URI} !(\.css|\.js|\.png|\.jpeg|\.jpg|\.gif|\.txt|\.zip|\.rar|\.ico)$ [NC]
# 确保请求路径不是一个文件名或目录
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# 重定向所有请求到 index.php?zhlphpurl=PATHNAME
RewriteRule ^(.*)$ index.php?zhlphpurl=$1 [PT,L]
</IfModule>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/juheli/zhlphp.git
git@gitee.com:juheli/zhlphp.git
juheli
zhlphp
zhlphp
master

搜索帮助