How to change the login panel from wp-admin with web.config
-
Hello,
i have just created a site and want to change the URL to the control panel from domain.com/wp-admin to something else.
i have downloaded a plugin which does not work on windows server. I am guessing a change to web.config could just do the trick, have tried a couple of changes but to no avail, can any one assis, here is the current web.config:
`<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<directoryBrowse enabled=”false”/>
<defaultDocument>
<files>
<clear/>
<add value=”index.php”/>
</files>
</defaultDocument>
<rewrite>
<rules>
<rule name=”wordpress” patternSyntax=”Wildcard”>
<match url=”*”/>
<conditions>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true”/>
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true”/>
</conditions>
<action type=”Rewrite” url=”index.php”/>
</rule>
<rule name=”WordPress Rule 3″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?manage$” ignoreCase=”false” />
<action type=”Redirect” url=”{R:1}manage/” redirectType=”Permanent” />
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
- The topic ‘How to change the login panel from wp-admin with web.config’ is closed to new replies.