up vote 0 down vote favorite
share [g+] share [fb]

I need for my .htaccess file to take away the .php file extension and replace it with just a trailing slash.

Also, I have a profile.php page which will normally be visited with a numeric querystring parameter, like "profile.php?id=3".

So on top of replacing extensions with slashes, how do I make "profile.php?id=3" look like "profile/3/"?

So far all I have is the first line:

RewriteEngine on

Where do I go from here?

link|improve this question

1  
possible duplicate of url rewriting in php – Artefacto Jun 20 '10 at 21:19
feedback

2 Answers

up vote 4 down vote accepted

If you're so new... you really should read the manual.

// if not a file
RewriteCond %{SCRIPT_FILENAME} !-f
// if not a directory
RewriteCond %{SCRIPT_FILENAME} !-d
// pass all params back to index.php
// QSA stands for query string append
// L stands for last rule
RewriteRule (.*) index.php?$1 [QSA,L]

But this will do what you want. Now don't be lazy. Read the manual!

link|improve this answer
Don't be lazy, Google! – Sepehr Lajevardi Jun 20 '10 at 21:24
3  
Pointless telling him not to be lazy after you've done the work for him :P – delete me Jun 20 '10 at 21:24
1  
@MrXexxed, you're right... you're right... shouldn't have! :) – Frankie Jun 20 '10 at 21:39
feedback

This should do it

RewriteRule ^profile/(.*)$ profile.php?id=$1 [NC,L]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.