tags:

views:

84

answers:

1

Hello Guys,

I just want to ask that how do i add html suffix to each url of my site using htaccess?

A url like this:

www.mysite.com/index.php?hello/world

should become

www.mysite.com/index.php?hello/world.html

+2  A: 
  RewriteEngine On

  RewriteCond %{HTTP_HOST} ^mydomain\.com$ [NC]

  RewriteRule ^(.*)$ http://www.mydomain.com/$1\.html [R=301,L]
MaikL80