Hello
Now that I got CI to run on my local PC… I’m struggling to get it to run on a hosted server
I read the archives, but none of the solutions worked:
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /igniter/
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)$ index.php?/$1 [L]
#RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteBase /igniter/
RewriteRule ^$ index.php [L]
RewriteCond $1 !^(index\.php)
#RewriteRule ^(.*)$ /index.php?/$1 [L]
#RewriteRule ^(.*)$ /index.php/$1 [L]
#RewriteRule ^(.*)$ index.php/$1 [L]
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
I get “Internal Server Error - The server encountered an internal error or misconfiguration and was unable to complete your request” if I call the default controller “welcome” via http://mysite.acme.com/igniter/ -> I expect htaccess to rewrite the URL as http://mysite.acme.com/igniter/index.php?welcome
OTOH, no problem if I delete .htaccess and use http://mysite.acme.com/igniter/
Any idea why? Could it be that the hoster restricts use of .htaccess?
Thanks for any tip.
