我遇到问题,无法在互联网上找到有效的解决方案。所以希望您能帮助我。
我需要使我的网站对SEO尽可能友好。因此,我需要更改以下内容
https://www.example.com/index.php
https://www.example.com/folder/index.php
https://www.example.com/folder/folder/index.php
收件人:
https://www.example.com/
https://www.example.com/folder/
https://www.example.com/folder/folder/
我需要某种规范的重定向,以便仅在没有/index.php的情况下才能访问我的网站,以消除重复的内容。
我想使用.htaccess。很感谢任何形式的帮助。 预先感谢。
答案 0 :(得分:1)
只需在主域(www.example.com/)中创建.htaccess,然后将其放在下面的代码中即可。
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php($|\ |\?)
RewriteRule ^ /%1 [R=301,L]