Redirect *.htm to *.php

2020-02-07 04:28发布

I am trying find out how to redirect all traffic 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.

2条回答
一夜七次
2楼-- · 2020-02-07 04:57

This will do the job in your .htaccess file:

RedirectMatch 301 (.*)\.htm$ $1.php
查看更多
可以哭但决不认输i
3楼-- · 2020-02-07 05:00
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.

查看更多
登录 后发表回答