IIS Issue

Brennen

hippopotomonstrosesquipedaliophobia
Nov 6, 2011
291
36
I just got back into making habbos,



How do I fix that?
 

Legion

Gaming Lord
Staff member
Nov 23, 2011
1,801
669
go to wwwroot. Delete ".htaccess" and create a new file and call it "web.config"
and put this inside it
Code:
<?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>
    </system.webServer>
</configuration>
 

Brennen

hippopotomonstrosesquipedaliophobia
Nov 6, 2011
291
36
I have MySQL already, how should I go about installing PHP? Is there an automatic installer or do I have to do it manually?
 

Users who are viewing this thread

Top