<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="urlrewle" stopProcessing="true">
<match url="^([a-z-]+)-([a-z-]+)(.*)" />
<action type="Rewrite" url="/Institutional.asp?projectID={R:1}-{R:2}" />
</rule>
</rules>
</rewrite>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00" />
</staticContent>
<caching>
<profiles>
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
<add extension=".jpeg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
<add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
<add extension=".js" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
<add extension=".woff" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" />
</profiles>
</caching>
<urlCompression doDynamicCompression="true" />
<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<remove statusCode="500" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/404.asp" responseMode="ExecuteURL" />
<error statusCode="500" prefixLanguageFilePath="" path="/500.asp" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
<appSettings>
<add key="CKFinderTempPath" value="" />
</appSettings>
<system.web>
<compilation tempDirectory="C:\Inetpub\vhosts\domain.com\tmp" />
</system.web>
</configuration>yukarıdaki kodu hosting anadizinde web.config dosyasının içine atıp değiştirebilirsin ve geliştirebilirsin. <rule name="yeniisimver" ></rule> ile de sayfa yapılarını genişletebilirsin.
Teşekkür ederim. Hemen deneyeceğim.