IIS Help

RetroRP

New Member
Mar 1, 2013
28
0
When I open my url, I get this error

Server Error in Application "DEFAULT WEB SITE"
IIS 7.5
Summary of errors
HTTP Error 403.14 - Forbidden

The Web server is configured to not allow viewing the contents of the directory.
Detailed information about the
Form​
DirectoryListingModule
Notification​
ExecuteRequestHandler
Manager​
StaticFile
Error Code​
0x00000000
Requested URL​

Physical Path​
C: \ inetpub \ wwwroot
Access Method​
Anonymous
User access​
Anonymous
Most likely causes:
  • For the requested URL is not configured with no default document and the server is not enabled directory browsing.
You can try:
  • If you do not want to enable directory browsing, ensure that a default document is configured and that the file exists.
  • Enable directory browsing using IIS Manager.
    1. Open IIS Manager.
    2. In the Features view, double-click Directory Browsing.
    3. In the Actions pane of the Directory Browsing page, click Enable.
  • Verify that the attribute configuration / system.webServer / directoryBrowse @ enabled is set to true in the configuration file of the site or application.
Links and other informationThis error occurs when a document is not specified in the URL is not specified, the default document for the Web site or application, and directory listing is not enabled for the Web site or application. The setting may be disabled on purpose to secure the contents of the server.
 

RetroRP

New Member
Mar 1, 2013
28
0
New error:
Server Error
404 - Can not find the file or directory.

It is possible that the desired resource has been removed, it is temporarily unavailable or that its name was changed.
 

StreetMoney

Member
Jul 19, 2012
417
8
Yeah u need a web.config try this Make This A Config File


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 3">
<match url="^(.*)\.htm$" />
<action type="Rewrite" url="{R:1}.php" />
</rule>
<rule name="Imported Rule 4">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?page={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 5">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?url={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<directoryBrowse enabled="true" />
</system.webServer>
<system.web>
<authentication mode="Windows" />
</system.web>
</configuration>
 

Users who are viewing this thread

Top