Remove/Redirect index.php from url to prevent duplicate urls

后端 未结 5 1904
盖世英雄少女心
盖世英雄少女心 2021-01-03 09:56

Please read the question carefully before marking as duplicate.

We all know, that using in .htaccess:

RewriteCond %{REQUEST_FIL         


        
5条回答
  •  攒了一身酷
    2021-01-03 10:51

    how can I redirect in .htaccess all urls that contain index.php to to the same url without index.php?

    Add this to your .htaccess

    RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index\.php [NC]
    RewriteRule ^ %1 [R=301,L]
    

提交回复
热议问题