惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 BLOG

博客园 - Nina

从今天开始进行物流面的了解以及分享 Oracle client端的日期格式设定处理 未能找到 CodeDom 提供程序类型“Microsoft.VisualC.CppCodeProvider, CppCodeProvider--- 问题处理 js 图片等比压缩并保留清新度 oracle11g升19c之ORA-00904 WM_CONCAT invalid identifie排故 读【技术人员需要有产品思维吗】摘抄 张一鸣:我的大学四年收获及工作感悟 ORACLE修改表空间方法 js parseFloat 0.1 精度问题 System.Data.OracleClient 需要 Oracle 客户端软件 version 8.1.7 或更高版本 fiddler配置夜神模拟器 如何快速接手一个新系统 谷歌浏览器设置跨域失败 Validation of viewstate MAC failed 解决办法--zt 如何查看Oracle客户端版本及位数(Windows系统)(转) 程序员集锦 如何最快速地适应新的工作 Oracle 03113 win10 优化
IIS 设置重定向
Nina · 2020-06-12 · via 博客园 - Nina

wwwroot 里将web.config 进行设定重定向

使对外出去的域名后面在指向新目录,比如 原本是 http://11.22.33/ ,现在要求指向 http://11.22.33/aa

在浏览器里输入 http://11.22.33/ 自动指向 http://11.22.33/aa

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="/WMS/" />
</files>
</defaultDocument>
<staticContent>
<mimeMap fileExtension=".apk" mimeType="application/vnd.android" />
<mimeMap fileExtension=".json" mimeType="text/json" />
</staticContent>
<httpRedirect enabled="false" destination="/WMS/" childOnly="false" />
</system.webServer>
</configuration>