开发者

Redirect *.htm to *.php

开发者 https://www.devze.com 2023-02-02 11:06 出处:网络
I am trying find out how to redirect all traffi开发者_如何转开发c on a website from any .htm address to a .php version of the page. I am hoping it will be a .htaccess rule but I have not been able to

I am trying find out how to redirect all traffi开发者_如何转开发c on a website from any .htm address to a .php version of the page. I am hoping it will be a .htaccess rule but I have not been able to find anything that quite fits for me yet and I am not the greatest with .htaccess.

Any help greatly appreciated.


This will do the job in your .htaccess file:

RedirectMatch 301 (.*)\.htm$ $1.php


RewriteEngine on

RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1.php [NC,L,R]

This will redirect file.html to file.php without causing an infinite looping error.

0

精彩评论

暂无评论...
验证码 换一张
取 消