FWQ
ecshop在IIS7 8上的rewrite重写规则web.config
ecshop在IIS7 8上的rewrite重写规则web.config,以下才是正确姿势: 其实iisrewrite配置成功后,相应的rewrite规则写到根目录的web.config文件中即可。ecshop2.7.3对应的规则如下 <?xml version=”1.0″ encoding=”UTF-8″?> <configuration> <system.webServer> <rewrite> <rules> <rule name=”Index” stopProcessing=”true”> <match url=”^index.html” /> <action type=”Rewrite” url=”index.php” /> </rule>…