Welcome Guest, Not a member yet? Register   Sign In
Problem setting routes in HMVC
#7

(05-31-2016, 08:35 AM)InsiteFX Wrote: Try this .htaccess file, it's from the FuelPHP and works very well:

Code:
<IfModule mod_rewrite.c>

    #Set the CodeIgniter Environment.
    #SetEnv CI_ENV development

   # Make sure directory listing is disabled
    Options +FollowSymLinks -Indexes
    RewriteEngine on

    # NOTICE: If you get a 404 play with combinations of the following commented out lines
    #AllowOverride All
    #RewriteBase /wherever/ci/is
    RewriteBase /

    # Restrict your site to only one domain
    # Important USE ONLY ONE OF THESE OPTIONS BELOW!

    # Option 1: To rewrite "www.domain.com -> domain.com" uncomment the following lines.
    #RewriteCond %{HTTPS} !=on
    #RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    #RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

    # Option 2: To rewrite "domain.com -> www.domain.com" uncomment the following lines.
    #RewriteCond %{HTTPS} !=on
    #RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
    #RewriteCond %{HTTP_HOST} (.+)$ [NC]
    #RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

    # Option 3: Remove index.php from URL
    #RewriteCond %{HTTP:X-Requested-With}    !^XMLHttpRequest$
    #RewriteCond %{THE_REQUEST}                ^[^/]*/index\.php [NC]
    #RewriteRule ^index\.php(.*)$            $1 [R=301,NS,L]

    # Send request via index.php (again, not if its a real file or folder)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    #RewriteCond $1 !^(index\.php|public_html|\.txt|robots\.txt|favicon\.ico|style\.css)

    # deal with php5-cgi first
    <IfModule mod_fcgid.c>
        RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
    </IfModule>

    <IfModule !mod_fcgid.c>

        # for normal Apache installations
        <IfModule mod_php5.c>
            RewriteRule ^(.*)$ index.php/$1 [QSA,L]
        </IfModule>

        # for Apache FCGI installations
        <IfModule !mod_php5.c>
            RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
        </IfModule>

    </IfModule>

</IfModule>

The code I showed you for the CMS Pages allow you to grab the segments by the number /1/2/3/4 etc;

I appreciate your input. 

I did the change, but it is still not working. When I try to access: http://localhost/Hub2/login I get a new error: Not Found. The requested URL /Hub2/login was not found on this server.

I can access the following addresses (like before) http://localhost/Hub2/ and http://localhost/Hub2/index.php/login
Reply


Messages In This Thread
Problem setting routes in HMVC - by bebetxx - 05-30-2016, 01:17 AM
RE: Problem setting routes in HMVC - by InsiteFX - 05-30-2016, 04:02 AM
RE: Problem setting routes in HMVC - by bebetxx - 05-30-2016, 04:30 AM
RE: Problem setting routes in HMVC - by InsiteFX - 05-30-2016, 10:12 AM
RE: Problem setting routes in HMVC - by bebetxx - 05-31-2016, 06:23 AM
RE: Problem setting routes in HMVC - by InsiteFX - 05-31-2016, 08:35 AM
RE: Problem setting routes in HMVC - by bebetxx - 05-31-2016, 09:06 AM
RE: Problem setting routes in HMVC - by kilishan - 05-31-2016, 09:31 AM
RE: Problem setting routes in HMVC - by bebetxx - 05-31-2016, 09:56 AM
RE: Problem setting routes in HMVC - by InsiteFX - 05-31-2016, 10:20 AM
RE: Problem setting routes in HMVC - by bebetxx - 06-01-2016, 12:39 PM
RE: Problem setting routes in HMVC - by InsiteFX - 06-01-2016, 12:47 PM
RE: Problem setting routes in HMVC - by bebetxx - 06-01-2016, 12:53 PM
RE: Problem setting routes in HMVC - by InsiteFX - 06-01-2016, 01:08 PM
RE: Problem setting routes in HMVC - by bebetxx - 06-01-2016, 01:14 PM
RE: Problem setting routes in HMVC - by InsiteFX - 06-01-2016, 01:44 PM
RE: Problem setting routes in HMVC - by InsiteFX - 06-01-2016, 01:46 PM
RE: Problem setting routes in HMVC - by bebetxx - 06-01-2016, 02:00 PM
RE: Problem setting routes in HMVC - by cartalot - 06-01-2016, 05:53 PM
RE: Problem setting routes in HMVC - by bebetxx - 06-01-2016, 10:00 PM
RE: Problem setting routes in HMVC - by InsiteFX - 06-01-2016, 06:04 PM
RE: Problem setting routes in HMVC - by bebetxx - 06-02-2016, 02:35 AM
RE: Problem setting routes in HMVC - by InsiteFX - 06-02-2016, 03:25 AM
RE: Problem setting routes in HMVC - by InsiteFX - 06-02-2016, 05:36 AM
RE: Problem setting routes in HMVC - by bebetxx - 06-02-2016, 09:05 AM
RE: Problem setting routes in HMVC - by InsiteFX - 06-02-2016, 09:07 AM
RE: Problem setting routes in HMVC - by bebetxx - 06-03-2016, 06:43 AM
RE: Problem setting routes in HMVC - by InsiteFX - 06-03-2016, 07:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB