How can i redirect html page extensions to php using proper htaccess redirect as similar to this http://www.hd2wallpapers.com/butterfly_green-wallpapers.html gets redirected to http://www.hd2wallpapers.com/butterfly_green-wallpapers.php.
Asked
Active
Viewed 71 times
0
-
duplicate: http://stackoverflow.com/questions/5990240/redirect-all-html-extensions-to-php – Oct 29 '13 at 06:10
2 Answers
0
You can try this in your .htaccess
RewriteEngine On
RewriteRule ^(.*)\.html$ $1.php [L]

BKM
- 6,949
- 7
- 30
- 45
0
if only this :
//301 Redirect Old File
Redirect 301 http://www.hd2wallpapers.com/butterfly_green-wallpapers.html http://www.hd2wallpapers.com/butterfly_green-wallpapers.php

AMH
- 461
- 5
- 12