当栏目的目录名称更改后文章百度收录为404的解决方法
2022-07-15 加入收藏
打开根目录找到/application/home/controller/view.php文件(用专业软件编辑)
找到位置大概在140左右,如以下截图:
代码为:
$results = array_merge($arctypeInfo, $result); $arcurl = arcurl('home/'.$this->modelName.'/view', $results, true, true); $emptyhtml = <<<EOF <!DOCTYPE html> <html> <head> <title>{$results['seo_title']}</title> <meta name="description" content="{$results['seo_description']}" /> <meta name="keywords" content="{$results['seo_keywords']}" /> </head> <body> <script> window.location.href="{$arcurl}"; </script> </body> </html> EOF; return $emptyhtml; //abort(404, '页面不存在');