Opencart在windows上伪静态web.config文件,该文件由好模板总结提供,测试完整可用, 把以下代码保存为web.config,置于网站根目录即可! 代码:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="opencart" stopProcessing="true">
<match url="^([^?]*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
<add input="{REQUEST_URI}" pattern=".*\.(ico|gif|jpg|jpeg|png|js|css)" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php?_route_={R:1}" appendQueryString="true"/>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
(责任编辑:好模板) |