Redirect *.htm to *.php

前端 未结 2 1087
余生分开走
余生分开走 2020-12-11 23:10

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 bee

相关标签:
2条回答
  • 2020-12-11 23:32
    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 讨论(0)
  • 2020-12-11 23:44

    This will do the job in your .htaccess file:

    RedirectMatch 301 (.*)\.htm$ $1.php
    
    0 讨论(0)
提交回复
热议问题