Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/.htaccess/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php Codeigniter路由器Google查找页面不存在_Php_.htaccess_Codeigniter - Fatal编程技术网

Php Codeigniter路由器Google查找页面不存在

Php Codeigniter路由器Google查找页面不存在,php,.htaccess,codeigniter,Php,.htaccess,Codeigniter,谷歌正在创建断开的链接,报告说: 2011年7月19日 404(未找到) 我不确定是htaces文件还是codeigniter控制器出了问题 在我们使用的codeigniter路由文件中: $route['default_controller'] = "content_pages"; $route['scaffolding_trigger'] = ""; //include_once BASEPATH . "cache/routes.php"; //$routes['listings/per

谷歌正在创建断开的链接,报告说: 2011年7月19日

404(未找到)

我不确定是htaces文件还是codeigniter控制器出了问题

在我们使用的codeigniter路由文件中:

$route['default_controller'] = "content_pages";
$route['scaffolding_trigger'] = "";

//include_once BASEPATH . "cache/routes.php";
//$routes['listings/permanent-therapy-jobs'] = "jobs/job_listings/3//";

$route['physical-occupational-speech/therapist-licensure-information.html'] = "content_pages/therapist_licensure_information";
$route['physical-occupational-speech/mission.html'] = "content_pages/mission";
$route['physical-occupational-speech/therapy-state-associations.html'] = "content_pages/therapy_state_associations";
$route['physical-occupational-speech/candidate-registration.html'] = "registration/candidate_registration";
$route['physical-occupational-speech/facility-registration.html'] = "registration/facility_registration";
$route['physical-occupational-speech/therapist-referral-program.html'] = "content_pages/therapist_referral_program";
$route['physical-occupational-speech/occupational-therapist-job-description.html'] = "content_pages/occupational_therapist_job_description";
$route['therapy-schools.html'] = "content_pages/schools";
$route['physical-occupational-speech/frequently-asked-questions-faq.html'] = "content_pages/frequently_asked_questions";
$route['physical-occupational-speech/([a-z-]+).html'] = "content_pages/$1";

$route['apply-job/([0-9]+).html'] = "jobs/apply/$1";

$route['openings/([0-9]+)/([0-9]+)/([0-9]+)/([a-z-]+)-jobs-in-([a-z-]+)/([a-z-]+)-therapy-jobs/([0-9]+).html'] = "jobs/job_details/$6";
//$route['listings/therapy-jobs'] = "jobs/job_listings///"; //All Jobs
$route['listings/therapy-jobs'] = "jobs/job_listings////0"; //All Jobs
$route['listings/therapy-jobs/([0-9]+)'] = "jobs/job_listings////$1"; //All Jobs

$route['([a-z]+)-therapy-schools-in-([a-zA-z-]+)'] = "content_pages/schools_state/$1/$2";

对不起,有什么问题吗


您正在尝试访问“openings”控制器,该控制器似乎不存在:。为开口设置控制器,设置处理开口的路线,或在.htaccess中设置它。

查看路线中的此特定规则

$route['openings/([0-9]+)/([0-9]+)/([0-9]+)/([a-z-]+)-jobs-in-([a-z-]+)/([a-z-]+)-therapy-jobs/([0-9]+).html'] = "jobs/job_details/$6";
你的链接
http://www.therapistjobsonline.com/openings/2011/06/21/speech-language-pathologist-jobs-in-paris/texas-speech-therapy-jobs/physical-occupational-speech/blog/index.php
显然无效。该链接需要以
id.html
结尾


这可能是因为您有某个页面生成了这些链接,而该页面正在生成非法链接。谷歌只是在为你网站的公共页面编制索引。尝试使用日志找出这些非法链接的来源。

我很困惑。。。谷歌在这方面做得怎么样?谷歌网站管理员工具正在寻找这些链接,并从中寻求最佳建议,但仍在努力寻找答案。我已经找到了创建坏链接的页面,但是当我加载页面时,我在任何地方都找不到坏链接。。。fml