Anyway.. what I want to do is to make sure that if a visitor enters my site via a directory they always endup at a specific page.
say the user enters mysite.com/uploads/ into the browser then I want the cms to load the page 'uploads' as if the user entered mysite.com/index.php?page=uploads
I tried this by putting a php file in the uploads dir and it looked like this:
Code: Select all
<?php
$page='uploads';
include('../index.php');
?>How can I make the cms always load this specific page from this directory?
regards
Daniel

