19 Star 57 Fork 18

moufer/Modoer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.htaccess 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
#
# .htaccess for Modoer
# Version 2.0
#
<IfModule mod_rewrite.c>
RewriteEngine On
# / 标识Modoer是在主域名或者二级域名下面,如果你的访问地址是www.modoer.com/modoer,就需要把 / 改成 /modoer
RewriteBase /
# 这是HTML伪静态部分,不使用可删除
RewriteRule ^(mylist|article|card|comment|coupon|exchange|fenlei|item|link|member|index|party|product|space|tuan|ucenter|ask|pay|graph|ask|review|shop|group|weixin|mobile)\.html$ index.php?Rewrite=$1.html [L]
RewriteRule ^(mylist|article|card|comment|coupon|exchange|fenlei|item|link|member|index|party|product|space|tuan|ucenter|ask|pay|graph|ask|review|shop|group|weixin|mobile)\-(.+)\.html$ index.php?Rewrite=$1-$2.html [L,NC]
# HTML伪静态结束
# 这是目录形式的URL改写,不使用可删除
RewriteCond %{REQUEST_URI} !^.*(\.css|\.js|\.gif|\.png|\.jpg|\.jpeg|\.ico)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# 这里的 /index.php也是根据你访问的域名觉得的,和 RewriteBase 一样的写法
RewriteRule ^(.*)$ /index.php?Pathinfo=$1 [L]
# 目录形式URL改写结束
</IfModule>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/moufer/Modoer.git
git@gitee.com:moufer/Modoer.git
moufer
Modoer
Modoer
master

搜索帮助