codename25 Posted August 18, 2014 Posted August 18, 2014 Hi, How can i implement pretty urls for my website build in php by accessing .htaccess files?. something like....... RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^users/(\d+)*$ ./profile.php?id=$1 RewriteRule ^threads/(\d+)*$ ./thread.php?id=$1 RewriteRule ^search/(.*)$ ./search.php?query=$1
Byron Posted August 18, 2014 Posted August 18, 2014 Is the code you posted not working for you? Check out this tutorial: http://code.tutsplus.com/tutorials/using-htaccess-files-for-pretty-urls--net-6049
codename25 Posted August 20, 2014 Author Posted August 20, 2014 Hi, It is working with errors. When i go to users/myname the page profile.php?id=myname is coming but the images in the page are broken. When i checked the URL of the images it is showing like domain.com/users/image.jpg. But i saved my images in the home directory it is supposed to be like domain.com/image.jpg. But here it showing as image.jpg is in the directory of users. Please help me to solve this issue.
codename25 Posted August 21, 2014 Author Posted August 21, 2014 Hi, Here is the Url of one of my pages http://www.tuneitlouder.tk/viewnews/250580674 .Actual url id http://www.tuneitlouder.tk/viewnews.php?id=250580674
hussam Posted August 21, 2014 Posted August 21, 2014 What CMS is that?how about changing the image links from images/myimage.png to /image/myimage.png so it's not a relative link to the current link but to top dir instead?
codename25 Posted August 22, 2014 Author Posted August 22, 2014 Hi, Its working now. Thanks Hussam. I should suppose to use /image/myimage.png. It was the problem. Thanks Byron for you support.
hussam Posted August 22, 2014 Posted August 22, 2014 In http://www.tuneitlouder.tk/viewnews/250580674, change the home link to / as well.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now