Okay, it could be the fact that i'm not the best with dealing with .htaccess files
however my general site path is as follows:
index.php?page=index
where further modules can be assigned like so:
index.php?page=index/category/id
it even works for
index.php?page=index/category/sub-category/id
Now i've got the PHP which sorts this fine, works a charm, but I need to get rid of index.php?page=$1
I've tried
But to no avail it doesn't seem to be working at all. Any ideas ?
I really need it to display
http://www.site.com/index/category/id
instead of the long windedness
Regards
however my general site path is as follows:
index.php?page=index
where further modules can be assigned like so:
index.php?page=index/category/id
it even works for
index.php?page=index/category/sub-category/id
Now i've got the PHP which sorts this fine, works a charm, but I need to get rid of index.php?page=$1
I've tried
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*)$ index.php?page=$1
But to no avail it doesn't seem to be working at all. Any ideas ?
I really need it to display
http://www.site.com/index/category/id
instead of the long windedness
Regards