简体   繁体   English

网站将进入 404 错误页面

[英]website is going to 404 error page

On this website I am building for wordpress, the footer.php file that I am editing I can't seem to fix one of the links.在这个网站上,我正在为 wordpress 构建,我正在编辑的 footer.php 文件我似乎无法修复其中一个链接。

<a href="<?php echo site_url(); ?>/contact-us/" class="btn btn-black text-uppercase pull-right">Contact Our Office</a>

When i click on the link it goes to a 404 page, and yes a contact-us page is real.当我点击链接时,它会转到 404 页面,是的,联系我们页面是真实的。

您可以使用此代码

<a href="<?php bloginfo('url'); ?>/contact-us/" class="btn btn-black text-uppercase pull-right">Contact Our Office</a>

You shouldn't need to use.你应该不需要使用。

<?php echo site_url(); ?>

You should be able to just use.你应该可以使用。

<a href="/contact-us/" class="btn btn-black text-uppercase pull-right">Contact Our Office</a>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM