Jump to content

[SOLVED] Making index.php catch all requests


datra

Recommended Posts

Hi,

 

I have a simple problem that I haven't been able to solve through Google, experimenting or anything. So I hope someone can tell me how to make the index.php file catch all requests (except the ones that doesn't return a 404 error). I simply want to be able to type any kind of URL: /foo/bar/123 and pass it over to index.php.

 

Requests like to files like /images/logo.jpg that actually exists should not be passed to index.php. But how? This doesn't work for some reason (.htaccess file):

 

Options +FollowSymlinks

RewriteEngine on

RewriteRule ^(.+)/$ index.php

 

This is the environment:

 

  • Apache 2.2.8
  • MySQL 5.0.51b
  • PHP 5.2.6

 

Link to comment
Share on other sites

Options +FollowSymlinks

RewriteEngine on

RewriteRule ^(.+)/$ index.php

 

The code above actually worked, I just needed to correct my httpd.conf a little bit. I had to turn the rewrite module on and allow override in .htaccess files.  :-\

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.