0

数ページの静的サイトと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を使用しようとしました。これを行う簡単な方法はありますか?任意の助けをいただければ幸いです。

-ありがとう

4

1 に答える 1

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>';

等。

于 2013-09-18T03:32:58.990 に答える