سلام

فایلی با نام Web.config بسازید و کد زیر را در آن قرار بدید ک
کد:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <clear />
        <rule name="Common Exploit Blocking" stopProcessing="true">
          <match url="^(.*)$" />
          <conditions logicalGrouping="MatchAny">
            <add input="{QUERY_STRING}" pattern="mosConfig_[a-zA-Z_]{1,21}(=|\%3D)" />
            <add input="{QUERY_STRING}" pattern="base64_encode.*\(.*\)" />
            <add input="{QUERY_STRING}" pattern="(\<|%3C).*script.*(\>|%3E)" />
            <add input="{QUERY_STRING}" pattern="GLOBALS(=|\[|\%[0-9A-Z]{0,2})" />
            <add input="{QUERY_STRING}" pattern="_REQUEST(=|\[|\%[0-9A-Z]{0,2})" />
          </conditions>
          <action type="Redirect" url="index.php" appendQueryString="false" redirectType="SeeOther" />
        </rule>
        <rule name="Joomla Search Rule" stopProcessing="true">
          <match url="(.*)" ignoreCase="true" />
          <conditions logicalGrouping="MatchAll">
            <add input="{URL}" pattern="^/search.php" ignoreCase="true" />
          </conditions>
          <action type="Rewrite" url="/index.php?option=com_content&view=article&id=4" />
        </rule>
        <rule name="Joomla Main Rewrite Rule" stopProcessing="true">
          <match url="(.*)" ignoreCase="true" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
            <add input="{URL}" pattern="(/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$" />
          </conditions>
          <action type="Rewrite" url="index.php/" />
        </rule>
      </rules>
    </rewrite>
    <caching>
      <profiles>
        <add extension=".php" policy="DisableCache" kernelCachePolicy="DisableCache" />
      </profiles>
    </caching>
  </system.webServer>
</configuration>
اگر در IIS ماژول URL Rewrite نصب باشه سایت شما بدون مشکل کار میکنه


یا علی