.Htaccess Help?

Status
Not open for further replies.

Bleep

PHP - HTML - CSS - JAVA ✔
Oct 19, 2012
266
46
Hey there,

I've just finished developing my site and I have finished everything except the .htaccess
I need a code which takes off the .php from the URL. Can anyone help with this?

Cheers,
Jamie
 

Kaz

BooYah
Staff member
Nov 16, 2010
3,065
1,034
Code:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
 
Status
Not open for further replies.

Users who are viewing this thread

Top