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

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.