联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
iis的这个伪静态怎么转换啊
类型:迅睿CMS 更新时间:2022-08-05 16:58:44

请问iis的这个伪静态怎么转换啊,有大佬可以帮转下吗,谢谢

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !.(js|ico|gif|jpe?g|bmp|png|css)$ /index.php [NC,L]

回帖
  • 罗世伟
    #1楼    罗世伟
    2022-08-05 16:18:23
    Chrome 0
    搜索下,iis方案很多啊
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    
    
    <location path="." allowOverride="false" inheritInChildApplications="false">
    
        <system.webServer>
            <rewrite>
                <rules>
                    <rule name="已导入的规则 1" stopProcessing="true">
                        <match url=".(js|ico|gif|jpe?g|bmp|png|css)$" negate="true" />
                        <conditions logicalGrouping="MatchAll">
                            <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" />
                    </rule>
                </rules>
            </rewrite>
        </system.webServer>
     
     
    </location>
     
    </configuration>
    满意答案
  • 李
    #2楼    李
    2022-08-05 16:58:44
    Chrome 0
    @罗世伟:嗯嗯啊找到了