my .htaccess redirects me to localhost |
[eluser]Matthew Pennell[/eluser]
The last line is redirecting all requests to the root folder's index.php page. Either add the name of the folder where you're running CI: Code: RewriteRule ^(.*)$ /myapp/index.php/$1 [L] or set up a VirtualHost in your Apache configuration file. |
Messages In This Thread |
my .htaccess redirects me to localhost - by El Forum - 12-18-2007, 01:52 AM
my .htaccess redirects me to localhost - by El Forum - 12-18-2007, 07:17 AM
my .htaccess redirects me to localhost - by El Forum - 12-19-2007, 03:18 AM
my .htaccess redirects me to localhost - by El Forum - 12-19-2007, 07:38 AM
my .htaccess redirects me to localhost - by El Forum - 12-19-2007, 10:22 PM
|