1 Star 0 Fork 25

Jiashi1998/LaTeXLive

forked from 熊猫大侠/LaTeXLive 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
web.config 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
熊猫大侠 提交于 2022-06-13 13:32 . 工程源码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<!-- 默认入口页 -->
<defaultDocument>
<files>
<add value="html/index.html" />
</files>
</defaultDocument>
<!-- 重写规则 -->
<rewrite>
<rules>
<!-- HTTPS -->
<!-- <rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule> -->
<!-- 路由 -->
<rule name="0">
<match url="^(.*)home$" />
<action type="Rewrite" url="{R:1}html/index.html" />
</rule>
<rule name="1">
<match url="^(.*)help$" />
<action type="Rewrite" url="{R:1}html/readme.html" />
</rule>
<rule name="2">
<match url="^(.*)update$" />
<action type="Rewrite" url="{R:1}html/update.html" />
</rule>
<rule name="3">
<match url="^(.*)messageboard$" />
<action type="Rewrite" url="{R:1}html/messageboard.html" />
</rule>
<rule name="4">
<match url="^(.*)writemessage$" />
<action type="Rewrite" url="{R:1}html/writemessage.html" />
</rule>
<rule name="5">
<match url="^(.*)login$" />
<action type="Rewrite" url="{R:1}html/login.html" />
</rule>
<rule name="6">
<match url="^(.*)personal$" />
<action type="Rewrite" url="{R:1}html/personal.html" />
</rule>
</rules>
</rewrite>
<modules>
<remove name="WebDAVModule" />
</modules>
</system.webServer>
</configuration>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiashisoft/la-te-xlive.git
[email protected]:jiashisoft/la-te-xlive.git
jiashisoft
la-te-xlive
LaTeXLive
master

搜索帮助