htaccess Redirect One File to Another

后端 未结 1 1856
情歌与酒
情歌与酒 2021-01-12 09:43

I\'ve read this and this seems too long for my request.

And tried Redirect /index.php /index2.php but it didn\'t work (Internal Server error)

Wh

相关标签:
1条回答
  • 2021-01-12 10:24

    Try:

    RewriteEngine On
    RewriteRule ^(header|content|footer)\.php - [L,R=404]
    

    or

    RewriteEngine On
    RewriteRule ^(header|content|footer)\.php index.php [L,R=301]
    
    0 讨论(0)
提交回复
热议问题