Zenuyasha
</Dev>
- Dec 5, 2016
- 170
- 48
Hello I kinda get an error here Anyone know this problem? TIA
My WEB.CONFIG
My WEB.CONFIG
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>
<rule name="Imported Rule 6">
<match url="^(community/staff)$" ignoreCase="false" />
<action type="Rewrite" url="staff" />
</rule>
<rule name="Imported Rule 7">
<match url="^(community/experts)$" ignoreCase="false" />
<action type="Rewrite" url="experts" />
</rule>
<rule name="Imported Rule 8">
<match url="^(community/designers)$" ignoreCase="false" />
<action type="Rewrite" url="designers" />
</rule>
<rule name="Imported Rule 9">
<match url="^(community/commands)$" ignoreCase="false" />
<action type="Rewrite" url="commands" />
</rule>
<rule name="Imported Rule 10">
<match url="^home/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=home&user={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 11">
<match url="^user/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=home&user={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 12">
<match url="^profile/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=home&user={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 13">
<match url="^news/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=news&id={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 14">
<match url="^article/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=news&id={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 15">
<match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 16">
<match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="/habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>