htaccess redirect index.php to root (including subdomains)

前端 未结 3 566
渐次进展
渐次进展 2020-12-02 09:23

I\'m trying to redirect index.php files to the root /, I\'ve searched around and found several snippets of code similar to:

RewriteCond %{THE_REQUEST} ^.*/in         


        
3条回答
  •  北海茫月
    2020-12-02 10:13

    Do this:

    RewriteCond %{THE_REQUEST} ^.*/index\.php 
    RewriteRule ^(.*)index.php$ /$1 [R=301,L] 
    

提交回复
热议问题