From a0a942c610f7069a3e252ad6aca632c7152e43f7 Mon Sep 17 00:00:00 2001
From: wanglizhong <wlz>
Date: 星期一, 05 五月 2025 11:17:23 +0800
Subject: [PATCH] fix:优化taskList报错,增加thirdpay.asp

---
 weixin/web.config |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/weixin/web.config b/weixin/web.config
new file mode 100644
index 0000000..78d0605
--- /dev/null
+++ b/weixin/web.config
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+    <system.webServer>
+        <defaultDocument>
+            <files>
+                <remove value="default.aspx" />
+                <remove value="Default.htm" />
+                <remove value="Default.asp" />
+                <remove value="index.htm" />
+                <remove value="index.html" />
+                <remove value="iisstart.htm" />
+                <add value="index.asp" />
+            </files>
+        </defaultDocument>
+        <handlers>
+            <remove name="php" />
+            <remove name="FastCGI" />
+            <add name="gds" path="*.gds" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\System32\inetsrv\asp.dll" resourceType="File" preCondition="bitness64" />
+            <add name="asp" path="*.asp" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\System32\inetsrv\asp.dll" resourceType="File" preCondition="bitness64" />
+            <add name="FastCGI" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="D:\project\鎬ユ晳杞繍\code\php\php-cgi.exe" resourceType="File" requireAccess="Script" />
+            
+        </handlers>
+        <httpErrors errorMode="DetailedLocalOnly" />
+       
+      
+    </system.webServer>
+</configuration>

--
Gitblit v1.9.1