0

I have a site constructed using the TinyButStrong template system, so consisting of pairs of .php pages with .html templates.

What rules should I use in a .htaccess file such that any call to a .html page is redirected to the .php?

kapa
  • 77,694
  • 21
  • 158
  • 175
Cruachan
  • 15,733
  • 5
  • 59
  • 112

1 Answers1

3
RewriteRule ^(.*)\.html$ $1.php [NC]
kapa
  • 77,694
  • 21
  • 158
  • 175