Welcome Guest, Not a member yet? Register   Sign In
htaccess file not allowed
#4

[eluser]n0xie[/eluser]
You can do rewrite rules in IIS. We use Helicon's Isapi Rewrite (version 2). Commercial licence is not that expensive. It's not quite as powerful as mod_rewrite but still removing the index.php from the url is trivial plus you get access to HTTP_X_REWRITE_URL (which is equal to PATH_INFO under Apache) which takes a lot of headaches away since you can just do:

Code:
$config['uri_protocol']    = "HTTP_X_REWRITE_URL";

and it works just as it would in an Apache environment:
Code:
//httpd.ini
[ISAPI_Rewrite]
RewriteRule /(.*) /index.php/$1 [I,L]


Messages In This Thread
htaccess file not allowed - by El Forum - 09-29-2009, 10:25 AM
htaccess file not allowed - by El Forum - 09-29-2009, 04:35 PM
htaccess file not allowed - by El Forum - 09-30-2009, 01:52 AM
htaccess file not allowed - by El Forum - 09-30-2009, 02:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB