Apologies if this question has been asked or I'm not sure if the title is correct, but I have just started to work with htaccess files and I am a bit lost. Basically what I want to do is prepend "index.php" to the URL. For example, if a user enters:
http://www.example.com/show/12
I would like the htaccess file to make the URL:
http://www.example.com/index.php/show/12
If that is not possible, is there a way to always go to the index.php front controller and add the "show/number" to the URL, so that the front controller can pass the parameters to another controller?
My htaccess code is the following:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php
I need it to assume that all URL requests are going to index.php front controller, then pass the rest of the URL to the front controller.
The error I keep getting is:
The requested URL /testing-mod-rewrite/show/12 was not found on this server.
Here is my PHP code for the front controller if it helps:
include_once('controllers/baseController.php');
$uri = $_SERVER['REQUEST_URI'];
$urifinal = str_replace($uri , '/', $uri);
$request = explode('/', $_SERVER['REQUEST_URI']);
$controller = new BaseController();
$controller->index_action($request);
index.php/in the url? Most developers would want to hide this. – Gerben Dec 1 '12 at 20:16RewriteBase /testing-mod-rewrite. Also make sure mod_rewrite is enabled. – Gerben Dec 1 '12 at 20:36