I have recently moved from Windows Servers to Linux and am trying to get the Pretty URL's and have managed to get it from:
I would like to get it to retrieve the actual name of the page rather than the ID number of the page for example
The code I am currently using is below and my sites are hosted on 1&1 if that helps at all:
Code: Select all
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ page.php?id=$1 [L,QSA]
Thankyou for anyhelp

Kind Regards
Joe