Post by yaseenghanchi » Tue Oct 18, 2011 9:24 pm

Hi To all,
Is any one help me??????

i have installed OPENCART in windows server 2003 and IIS.
Every thing is working fine instead of URL REWRITE MOD

please help me SEO Friendly url rewriting mod is not working in IIS 6. how can i fix this??????

Newbie

Posts

Joined
Mon Oct 03, 2011 6:44 pm
Location - Karachi, Pakistan

Post by JAY6390 » Tue Oct 18, 2011 10:31 pm

search the forum for how to rewrite urls using iis

Image


User avatar
Guru Member

Posts

Joined
Wed May 26, 2010 11:47 pm
Location - United Kingdom

Post by imdevlper18 » Sun Aug 30, 2015 2:57 pm

For other people who need help with windows iis server.

If you are using windows iis server then you need to create a new file called web.config
Add the following content in this new file.

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
   <rewrite>
     <rules>
       <rule name="Imported Rule 1" stopProcessing="true">
         <match url="^(.*)$" ignoreCase="false" />
         <conditions>
      <add input="{HTTP_HOST}" pattern="^example\.com$" />
         </conditions>
         <action type="Redirect" redirectType="Permanent" url="http://www.example.com/{R:1}" />
       </rule>
       <rule name="Imported Rule 2" stopProcessing="true">
         <match url="^(.*)$" ignoreCase="false" />
         <conditions>
      <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
      <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
      <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
         </conditions>
         <action type="Rewrite" url="index.php?_route_={R:1}" appendQueryString="true" />
       </rule>
     </rules>
   </rewrite>
  </system.webServer>
</configuration>
Replace example.com with the your site name.
Reference link : http://www.ocaddons.com/opencart-tutori ... ver-2.html

Opencart Extensions | Professional opencart support | Support Ticket | support@cartbinder.com


User avatar
Active Member

Posts

Joined
Sun May 11, 2014 2:04 pm
Who is online

Users browsing this forum: Amazon [Bot], darkhorse, RiguPhoto and 199 guests