itwasthewind
itwasthewind

Reputation: 355

URL Rewriting to have all requests to http://example.com/controller redirected to http://example.com/index.php/controller without changing the url

I'd like to have all requests to http://example.com/controller redirected to http://example.com/index.php/controller without changing the url, and this is what my .htaccess file looks like:

# Customized error messages.
ErrorDocument 404 /index.php

# Set the default handler.
DirectoryIndex index.php

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php/$1 [L,QSA]

  RewriteBase /
  RewriteCond %{HTTP_HOST} ^www.example.com [NC]
  RewriteRule ^(.*)$ http://example.com/$1 [R=301] 
</IfModule>

Unfortunately, this doesn't work. All requests to http://example.com/controller get routed to the home controller, and the url doesn't change. And all requests to http://www.example.com/controller get routed to http://example.com/index.php/controller and the url DOES change in the address bar.

Upvotes: 0

Views: 214

Answers (1)

Gumbo
Gumbo

Reputation: 655239

Put those rules that cause an external redirect in front of those that cause an internal redirect. So:

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP_HOST} =www.example.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

Upvotes: 1

Related Questions