gibson98 Posted November 22, 2017 Share Posted November 22, 2017 (edited) Hi,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: http://mydomain.com/page.php?id=1Tohttp://mydomain.com/1 I would like to get it to retrieve the actual name of the page rather than the ID number of the page for example http://mydomain.com/page.php?id=1Would behttp://mydomain.com/home The code I am currently using is below and my sites are hosted on 1&1 if that helps at all: RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ page.php?id=$1 [L,QSA] I am new to this and have tried reading up on it but can't seem to get any further and am banging my head against a wall!Thankyou for anyhelp Kind RegardsJoe Edited November 22, 2017 by gibson98 Quote Link to comment https://forums.phpfreaks.com/topic/305730-url-rewrite-help-please/ Share on other sites More sharing options...
requinix Posted November 23, 2017 Share Posted November 23, 2017 You already had code that was able to look up the content given id=1, right? Instead of that, have your code look up the content given the name. Quote Link to comment https://forums.phpfreaks.com/topic/305730-url-rewrite-help-please/#findComment-1554029 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.