-1

Basically im making a IDE Website: http://dev7ide.grn.cc

And anyway, I am wanting the URL to rewrite from project.php?id=someid to project?id=someid

I can remember some of it but dont know it of by heart.

1
  • You could just answer my simple question to get better answer. Commented May 2, 2014 at 23:59

1 Answer 1

0

If you want to remove only php extension you could do this:

RewriteEngine On RewriteRule ^(.+)\.php$ $1 

If you want to remove any extension you could do this:

RewriteEngine On RewriteRule ^(.+)\.[^\.]+$ $1 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.