Welcome Guest, Not a member yet? Register   Sign In
Not access panel administration iis
#1

[eluser]Unknown[/eluser]
hello,

I have iis 7 and my route admin panel is administracion.

But the system return 404 error.

My web.config is:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Index">
<match url="^(.*)$" />
<conditions>
<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/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>

<system.web>
<customErrors mode="Off" />
</system.web>

</configuration>


The web work correctly but whenI go to;

http;//domain.com/admin/administracion

I get 404 error.

Thanks




Theme © iAndrew 2016 - Forum software by © MyBB