链接到wordpress博客的静态html页面

时间:2013-09-18 03:15:11

标签: php html wordpress

我有一个带有几页的静态站点和一个Wordpress安装。我将wordpress上传到服务器,然后我可以使用链接href =“blog \”从任何静态页面访问它。静态html页面存储在服务器的主目录中,该目录也是存储博客的位置。该目录如下所示:

public_html/   //Server directory
-index.html
-contact.html
-about.html
-blog/         //Folder with blog installation
--wp-content/
---themes/
----theme_name/ 
-----file_with_links.php

我试图将链接放在php文件“file_with_links.php”中,该文件将链接回静态html页面,这些页面是几个目录。我试着用../../../../../page.html没有运气。是否有捷径可寻?任何帮助将不胜感激。

-Thanks

1 个答案:

答案 0 :(得分:0)

最佳做法是使用完整的URI(http://YourSiteHere.com/YourFileHere.html)。

要实现此目的,请在file_with_links.php文件中使用此代码:

$root_toot = "http://YourSiteHere.com";

$to_contact = '<a href="' . $root_toot . '/contact.html">Contact</a>';
$to_about = '<a href="' . $root_toot . '/about.html">About</a>';