How to remove .php extension from web.config file from wordpress root folder? How to remove .php extension from web.config file from wordpress root folder? wordpress wordpress

How to remove .php extension from web.config file from wordpress root folder?


Use this code in your web config:

<rewrite>        <rules>            <rule name="Imported Rule 1" stopProcessing="true">                <match url="^(.*)$" />                <conditions logicalGrouping="MatchAll">                    <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />                    <add input="{REQUEST_FILENAME}.php" matchType="IsFile" ignoreCase="false" />                </conditions>                <action type="Rewrite" url="{R:1}.php" />            </rule>        </rules>    </rewrite>