Welcome Guest, Not a member yet? Register   Sign In
.htaccess for multiple controllers
#4

[eluser]Phil Sturgeon[/eluser]
Thats not the problem you are having. Is main a controller that you want all frontend url's to go through, or is it meant to be your default route?

If you just want / to go to controllers/main then set it in your config/routes.php to do so.

If you want all url's other than /admin to go to the controller/main, you will need to say so in your redirect rule, as it is currently JUST removing the index.php and not saying anything about main.

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    # Send admin URL's to the admin controller (then skips the rest of the redirect rules)
    RewriteCond %{REQUEST_URI} ^/admin(.*)
    RewriteRule ^(.*)$ /index.php/admin/$1 [L]    

    # Redirects any request thats not a file or directory through to the main controller
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php/main/$1 [L]

</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

This has not been tested as im at work, but should be pretty close.

I removed the systems.* condition as you should not be typing system into the URL - unless your index.php file is inside that folder (bad idea).


Messages In This Thread
.htaccess for multiple controllers - by El Forum - 11-19-2008, 07:01 PM
.htaccess for multiple controllers - by El Forum - 11-20-2008, 06:34 AM
.htaccess for multiple controllers - by El Forum - 11-20-2008, 07:27 AM
.htaccess for multiple controllers - by El Forum - 11-20-2008, 07:54 AM
.htaccess for multiple controllers - by El Forum - 11-20-2008, 09:08 AM
.htaccess for multiple controllers - by El Forum - 11-21-2008, 10:19 AM
.htaccess for multiple controllers - by El Forum - 11-21-2008, 06:22 PM
.htaccess for multiple controllers - by El Forum - 11-21-2008, 06:23 PM
.htaccess for multiple controllers - by El Forum - 11-22-2008, 09:48 AM
.htaccess for multiple controllers - by El Forum - 11-22-2008, 09:59 AM
.htaccess for multiple controllers - by El Forum - 11-26-2008, 09:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB