08-07-1395، 01:14 ب.ظ
سلام دوستان
خسته نباشید
چطور می تونم این فایل webconfig برای IIS رو به htaccess تبدیل کنم؟
تشکر
خسته نباشید
چطور می تونم این فایل webconfig برای IIS رو به htaccess تبدیل کنم؟
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Redirect All" stopProcessing="true"> <match url=".*" /> <action type="Rewrite" url="/index.php" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> </rule> </rules> </rewrite> <httpErrors errorMode="Detailed" /> </system.webServer> <system.web><httpRuntime executionTimeout="300"/></system.web> </configuration>
تشکر