Welcome Guest, Not a member yet? Register   Sign In
htaccess is not working
#26

[eluser]Unknown[/eluser]
I also had big problems with the site links in the production environment (on the public host server) - URL not found... error 500 internal server error etc.

In my case the troubles were with URL strings and the web server itself.

It turns out that some web servers just do not allow a URL like ...index.php/something
It has to be like this to work: ...index.php?something
So, you should change the RewriteRule like this:

RewriteRule ^(.*)$ /index.php?$1 [L,QSA]

and everything runs fine now.


[quote author="domfosnz" date="1222865978"]I'm using XAMPP. The following worked for me:

Code:
$config['base_url'] = "http://127.0.0.1/rootfolder/"
$config['index_page'] = "";

Then in .htaccess:

Code:
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]

I also configured apache to allow rewriting.[/quote]


Messages In This Thread
htaccess is not working - by El Forum - 06-25-2008, 07:28 AM
htaccess is not working - by El Forum - 06-25-2008, 02:03 PM
htaccess is not working - by El Forum - 06-25-2008, 09:33 PM
htaccess is not working - by El Forum - 06-26-2008, 01:01 AM
htaccess is not working - by El Forum - 06-26-2008, 01:25 AM
htaccess is not working - by El Forum - 06-26-2008, 02:25 AM
htaccess is not working - by El Forum - 06-26-2008, 02:34 AM
htaccess is not working - by El Forum - 06-26-2008, 02:43 AM
htaccess is not working - by El Forum - 06-26-2008, 02:53 AM
htaccess is not working - by El Forum - 06-26-2008, 03:46 AM
htaccess is not working - by El Forum - 06-26-2008, 03:51 AM
htaccess is not working - by El Forum - 06-26-2008, 03:52 AM
htaccess is not working - by El Forum - 06-26-2008, 03:53 AM
htaccess is not working - by El Forum - 06-26-2008, 03:56 AM
htaccess is not working - by El Forum - 06-26-2008, 03:58 AM
htaccess is not working - by El Forum - 06-26-2008, 04:23 AM
htaccess is not working - by El Forum - 06-26-2008, 04:26 AM
htaccess is not working - by El Forum - 06-26-2008, 04:31 AM
htaccess is not working - by El Forum - 06-26-2008, 04:33 AM
htaccess is not working - by El Forum - 06-26-2008, 04:41 AM
htaccess is not working - by El Forum - 06-26-2008, 04:54 AM
htaccess is not working - by El Forum - 06-26-2008, 05:07 AM
htaccess is not working - by El Forum - 06-26-2008, 06:00 AM
htaccess is not working - by El Forum - 06-26-2008, 06:32 AM
htaccess is not working - by El Forum - 10-01-2008, 01:59 AM
htaccess is not working - by El Forum - 11-01-2008, 11:14 AM
htaccess is not working - by El Forum - 01-07-2009, 07:10 AM
htaccess is not working - by El Forum - 07-10-2010, 08:13 AM
htaccess is not working - by El Forum - 07-13-2010, 03:10 AM
htaccess is not working - by El Forum - 07-13-2010, 03:56 AM
htaccess is not working - by El Forum - 04-28-2012, 04:45 AM



Theme © iAndrew 2016 - Forum software by © MyBB