Jump to content

.htaccess write php string query in url


Richard_Grant

Recommended Posts

You will first need to edit your PHP script so it outputs the links in the new format. Eg

<a href="/user/1">FooBar</a>

Then in .htaccess file in the your sites document root. You can use the following rule

RewriteEngine On
RewriteRule user/(\d+) board/profile.php?user=$1 [NC]

To map /user/x to /board/profile.php?user=x

You will first need to edit your PHP script so it outputs the links in the new format. Eg

<a href="/user/1">FooBar</a>

Then in .htaccess file in the your sites document root. You can use the following rule

RewriteEngine On
RewriteRule user/(\d+) board/profile.php?user=$1 [NC]

To map /user/x to /board/profile.php?user=x

 

Thank you :) im sure that will work exactly the way i need it to, i will let you know as soon as i finish making the user profile!

im using this:

RewriteCond %{REQUEST_URI} user/(.*)/(.*)/
RewriteRule user/(.*)/(.*)/ %{DOCUMET_ROOT}/board/profile.php?ID=$1&NAME=$2

Is that fine? its working fine but is it depreciated or anything?

Ahhh! i just found out that if i type

https://www.mysite.com/user/RichardGrant/1

 

it doesnt recongnize the url because the trailing slash...

 

but this works fine!

https://www.mysite.com/user/RichardGrant/1/

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.