编程语言
首页 > 编程语言> > laravel网站url中的index.php作为参数

laravel网站url中的index.php作为参数

作者:互联网

我发现可以使用index.php作为参数访问任何laravel网站.

这是一个很大的问题,url参数中的index.php会破坏所有图像.
看一个真实的例子来理解我的意思:

http://www.cyprusalive.com/main-thing/sightseeing
http://www.cyprusalive.com/index.php/main-thing/sightseeing

Googlebot使用index.php作为url参数读取了一些url.当有人使用index.php从google搜索访问网站时,这会破坏所有图像.

此外,这是不良的seo做法,因为会产生重复的内容.

解决此问题的最佳方法是什么?

解决方法:

这个问题可以通过nginx rewrite rules来解决.使用波纹管规则,将所有带有index.php参数的网址重定向到原始的laravel路由网址

location /index.php {
      rewrite ^/index.php(.*)$http://$server_name$1;
}

我也将以下内容放到robots.txt中

Disallow: /*index.php*

标签:googlebot,laravel,laravel-5,nginx,php
来源: https://codeday.me/bug/20191118/2027354.html