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

Hudson
  • 397
  • 1
  • 12

1 Answers1

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
Emanuele
  • 617
  • 5
  • 16