0

How i rewrite url, using htaccess , i have tryed like this :

RewriteRule ^file$ file.php [L]

i don't want to be displayed the file extension

i want to rewrite url like this :

http://example.com/file.php into http://example.com/file

Darius
  • 253
  • 1
  • 2
  • 9
  • 1
    possible duplicate of: http://stackoverflow.com/questions/4026021/remove-php-extension-with-htaccess – JMax Aug 24 '11 at 08:44

1 Answers1

0
RewriteEngine on
RewriteRule ^file$ /file.php
Pedro Lobito
  • 94,083
  • 31
  • 258
  • 268