Jump to content

Editing .htaccess File For Pretty Urls In My Website


codename25

Recommended Posts

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...