Welcome Guest, Not a member yet? Register   Sign In
Unable to remove index.php on IIS 10
#8

Hi, try this one instead.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <system.webServer>
       <defaultDocument>
           <files>
               <remove value="index.htm" />
               <remove value="Default.htm" />
               <remove value="Default.asp" />
               <remove value="iisstart.htm" />
               <add value="index.php" />
           </files>
       </defaultDocument>
       <rewrite>
           <rules>
               <rule name="Remove Index.php" stopProcessing="true">
                   <match url="^(.*)$" ignoreCase="false" />
                   <conditions logicalGrouping="MatchAll">
                       <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                       <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
                       <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
                   </conditions>
                   <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
               </rule>
           </rules>
       </rewrite>
   </system.webServer>
</configuration>
Reply


Messages In This Thread
RE: Unable to remove index.php on IIS 10 - by jreklund - 10-08-2018, 11:57 AM



Theme © iAndrew 2016 - Forum software by © MyBB