Remove html extension from url using mod rewrite

67 Views Asked by At

I have used mod rewrite to change this url:

http://example.com/first.php?second=third

To:

http://example.com/third.html

Using this:

RewriteRule ^([^/]*)\.html$ /first.php?second=$1 [L]

How can I remove the .html file extension?

1

There are 1 best solutions below

0
On BEST ANSWER
RewriteRule ^([^\.]+)$ $1.html [NC,L]