Инструменты Google для веб-мастеров предоставляют основные инструменты, необходимые для мониторинга вашего веб-сайта или блога и исправления любых ошибок, которые могут помешать Google проиндексировать ваши страницы и ваши страницы, отображаемые в результатах поиска Google. Недавно я начал замечать пресловутую ошибку «Отказано в доступе». Некоторые ссылки, связанные с Feedburner, начали отображаться в разделе Ошибки сканирования -> Ошибки URL моего GWT. Все, что я мог получить из информации об ошибке, было то, что эти ссылки были связаны с Feedburner. Проблемные ссылки включали такие параметры URL, как utm_source, utm_medium, utm_campaign и некоторую информацию в Feedburner. В этом посте я поделюсь с вами тем, как я исправил проблему в надежде, что она может помочь кому-то еще, а также сэкономить время.
Ошибка доступа к Инструментам Google для веб-мастеров
В моем случае было два проблемных URL:
https://www.smarthomebeginner.com/create-cron-job-with-webmin/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+htpcBeginner+(htpcBeginner)
<blockquote class="wp-embedded-content" data-secret="DPfRzbFVVI"><a href="https://www.smarthomebeginner.com/openelec-3-2-1-released-raspberry-pi-update-instructions/">OpenELEC 3.2.1 Released: Raspberry Pi Update Instructions</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);" src="https://www.smarthomebeginner.com/openelec-3-2-1-released-raspberry-pi-update-instructions/embed/#?secret=DPfRzbFVVI" data-secret="DPfRzbFVVI" width="600" height="338" title=""OpenELEC 3.2.1 Released: Raspberry Pi Update Instructions" — SmartHomeBeginner" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
While you may find fixes that revolve around making Google ignore the links that contain the utm_source, utm_medium, and utm_campaign parameters, they are not the ideal fixes because some may linked to those URLs and you may lose the backlink juice. Searching around, I found several bloggers had this issue but no clear solution available. Fortunately, I stumbled upon <a href="https://wordpress.org/support/topic/403-forbidden-error-on-google-wmt" rel="nofollow" target="_blank">this thread</a> that solved the issue for me. The Google <u>webmaster tools access denied</u> error was caused by the <a href="https://wordpress.org/plugins/bulletproof-security/" target="_blank" rel="nofollow">BulletProof Security</a> (BPS) WordPress plugin I recently implemented.
[ls_content_block slug="recommended-reading-wordpress"]
The <a href="https://wordpress.org/support/topic/403-forbidden-error-on-google-wmt" target="_blank" rel="nofollow">Webmaster Tools access denied</a> error is caused due to the parenthesis at the end of the links, in this case: (htpcBeginner). BulletProof Security denies access to referrers that contain the parenthesis. The solution is to somehow remove the parenthesis or make BulletProof Security ignore them, the latter being the more practical solution. To make BPS ignore the parenthesis, go to BPS Security plugin settings page from your WordPress dashboard. Then open "Your Current Root htaccess File" under "htaccess File Editor" tab.
<a href="https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor.png" data-rel="penci-gallery-image-content" ><img src="https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor-500x154.png" alt="BulletProof Security htaccess File Editor" width="500" height="154" class="size-large wp-image-9221" src="" data-srcset="https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor-500x154.png 500w, https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor-150x46.png 150w, https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor-300x92.png 300w, https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor-740x228.png 740w, https://www.smarthomebeginner.com/images/2013/10/gwt_bps_htaccess_editor.png 897w" sizes="(max-width: 500px) 100vw, 500px" /></a> BulletProof Security htaccess File Editor
Find the following line:
Источник записи: https://www.smarthomebeginner.com
