OpenCart - 中文论坛
标题:
求windows系统下伪静态设置。
[打印本页]
作者:
LCT
时间:
2013-8-26 18:37
标题:
求windows系统下伪静态设置。
本帖最后由 LCT 于 2013-8-26 19:29 编辑
因为在windows下iis的伪静态不能用,急求高手把 .htaccess 转换成 httpd.ini ,非常感谢。
作者:
LCT
时间:
2013-8-27 19:45
找了很多资料张终于搞定。我看到很多人需要,分享给大家。
修改web.config文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Custom">
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/404.html" responseMode="ExecuteURL" />
</httpErrors>
<httpRedirect enabled="false" />
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^([^?]*)" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?_route_={R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
作者:
sunboy
时间:
2013-9-2 23:04
别折腾了,换主机吧
作者:
大神
时间:
2014-12-7 00:05
LZ也挺牛逼的
作者:
haoxu
时间:
2014-12-17 02:15
我觉得也是换主机的好,个人意见!
欢迎光临 OpenCart - 中文论坛 (https://bbs.opencart.cn/)
Powered by Discuz! X3.2