Jump to content

user friendly url's with htaccess


godleydesign

Recommended Posts

Hi,

Can someone help me with User friendly URL and get variables.

 

My file is called test.php and i'm using htaccess to remove the .php part of the url.

 

In theory i want the following:
www.example.com/test/1234

 

1234 is my id= part

 

How can i do this?

here's my htaccess so far:


Options -Indexes
 
RewriteEngine  on
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*\.php$ %{REQUEST_FILENAME}.php [L, QSA]
 
RewriteRule ^(.*)$ test.php?/$1 [L]

 

 

i'm trying to get the get variable by:


$var = $_GET['id'];
 
echo $var;

 

Link to comment
Share on other sites

I'm not 100% sure it isn't possible to do so in an .htaccess file, but you probably want to do this in your server configuration files (httpd.conf if you are running Apache).

 

My guess is that your server looks for the directory of "test" and returns a 404 before it ever gets to the directory that has your .htaccess file.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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...

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.