I am using a script, on which i want to enable friendly URL, below are the instructions. Friendly URLs Settings Apache Settings (please add the following lines to your .htaccess file to turn on friendly URLs) <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /hcl/friendly_url.php [L] </IfModule> Code (markup): But, issue is, i am using IIS on Windows Server. How can i implement this ?
There are a few additional modules you need to install to get mod_rewrite work with IIS. Have a look at the following urls: ====================================== http://www.petefreitag.com/item/286.cfm http://kalsey.com/2002/03/mod_rewrite_for_iis ====================================== I m using IISRewrite in my windows 2008 box
Hello, I installed http://www.helicontech.com/isapi_rewrite/ Now i entered these lines in .htaccess ( self - created ) and even httpd.ini ( system created ) Still i can not use friendly URLs Kindly help over...
You can not simply copy the mod_rewrite rule in httpd.ini file. Isapirewrite and mod_rewrite have their own rules to write the rules. If you use mod_rewrite rule in ISAPI rewrite rule then it will not work. You will need to change the rules. I am not much more aware with how to write isapirewrite rules else I will provide few guidelines. Kailash