Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7942601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:01:32+00:00 2026-06-04T00:01:32+00:00

I have a FrontController expecting two $_GET params: controller action A typical call to

  • 0

I have a FrontController expecting two $_GET params:

controller
action

A typical call to the site would look like this:

http://foo.bar/index.php?controller=start&action=register

What I want to do is to allow the user to visit this site by the following url:

http://foo.bar/start/register

What I’ve tried:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.+)/(.+)$ index.php?controller=$1&action=$2 [L,QSA]
</IfModule>

Since this gives me 404 Errors it doesn’t seem to work.

mod_rewrite itself is enabled on the server.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T00:01:34+00:00Added an answer on June 4, 2026 at 12:01 am

    The .htaccess you posted works for me:

    // GET /cont1/action1
    
    print_r($_GET);
    
    /* output
    Array
    (
        [controller] => cont1
        [action] => action1
    )
    */
    

    You might want to try an absolute path to index.php rather than a relative one.

    Regardless, that regex will result in:

    // GET /cont1/action1/arg1
    
    print_r($_GET);
    
    /* output
    Array
    (
        [controller] => cont1/action1
        [action] => arg1
    )
    */
    

    You’d be better off doing:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ /index.php?url=$1 [QSA,L]
    </IfModule>
    

    And having your index.php split up the $_GET['url'] into controller, action, args, etc…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

On my site, when I call $this->baseUrl() in a view, it returns an empty
I have simple front controller plugin which contains this code: http://pastebin.com/m155c59b0 When session expire
I have an auth module, and would like to keep a Login form in
I have some dilemma about controller usage. Like usualy, router (dispatcher or front controller)
I have a application.ini like this [production] phpSettings.display_startup_errors = 1 phpSettings.display_errors = 1 includePaths.library
Have a singleton class for BNRItemStore, but when I tried to call it, I
Have just started using Google Chrome , and noticed in parts of our site,
I have a larger application with a Frontcontroller in php that handles incoming ajax
I have a c# library project, that i configured using nhibernate, and I like
I have one module (site) in my zend framework app. What I am trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.