迅睿開(kāi)源框架是一款PHP8高性能·簡(jiǎn)單易用的PHP開(kāi)源開(kāi)發(fā)框架, 基于MIT開(kāi)源許可協(xié)議發(fā)布,不限制商業(yè)使用,以多端互聯(lián)為設(shè)計(jì)理念, 支持的微信公眾號(hào)、小程序、APP客戶(hù)端、移動(dòng)端網(wǎng)站、PC網(wǎng)站等多終端式管理系統(tǒng)。
業(yè)務(wù)經(jīng)理
微信掃描以上二維碼
028-61286886
技術(shù)咨詢(xún)
用的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]
建議問(wèn)下服務(wù)商,這個(gè)我們cms沒(méi)有這種文檔的
開(kāi)源是一種精神,但不是義務(wù),幫忙是情分,不幫也不要抱怨,建議大家多研究代碼、多閱讀代碼、多翻閱社區(qū)歷史問(wèn)題!
<?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)解決
建議問(wèn)下服務(wù)商,這個(gè)我們cms沒(méi)有這種文檔的
開(kāi)源是一種精神,但不是義務(wù),幫忙是情分,不幫也不要抱怨,建議大家多研究代碼、多閱讀代碼、多翻閱社區(qū)歷史問(wèn)題!
<?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)解決