简体   繁体   中英

How can i redirect html page extension to php using htaccess

我如何使用正确的htaccess重定向将html页面扩展名重定向到php,类似于与此http://www.hd2wallpapers.com/butterfly_green-wallpapers.html重定向到http://www.hd2wallpapers.com/butterfly_green-wallpapers.php

You can try this in your .htaccess

RewriteEngine On
RewriteRule ^(.*)\.html$ $1.php [L]

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM