CodeIgniter Forums
trouble with htaccess url rewrite on godaddy IIS7 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: trouble with htaccess url rewrite on godaddy IIS7 (/showthread.php?tid=45522)



trouble with htaccess url rewrite on godaddy IIS7 - El Forum - 09-25-2011

[eluser]Unknown[/eluser]
Hello everyone,
i have trouble deploying my website, it appears that url rewriting doesn't work. I noticed goddady runs on IIS7, maybe url rewriting works differently on IIS?

my current htaccess
Code:
Options +FollowSymLinks
RewriteEngine on

RewriteCond $1 !^(index\.php|images|css|js|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]

maybe godaddy doesn't support url rewriting? maybe IIS7 doesn't support it?

i have never touched IIS7, so.. i'm in a dark here..

any help appreciated.