聯(lián)系官方銷售客服
1835022288
028-61286886
用的IIS,網(wǎng)站需要偽靜態(tài),但是不知道怎么轉(zhuǎn)換規(guī)則文件,求助
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !.(js|ico|gif|jpe?g|bmp|png|css)$ /index.php [NC,L]
建議問下服務商,這個我們cms沒有這種文檔的
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="tool.apizl.com rewriteTools8" patternSyntax="ECMAScript" stopProcessing="true">
<match url="!.(js|ico|gif|jpe?g|bmp|png|css)" ignoreCase="false" />
<conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /></conditions>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="/index.php" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<httpErrors>
</httpErrors>
</system.webServer>
</configuration>
已經(jīng)解決