Wordpress

為什麼 wordpress 站點 top -c 顯示只使用索引文件

  • September 19, 2016

我想知道為什麼 wordpress 網站top -c顯示只使用索引文件。

index.php 處理的所有請求是什麼?

當我每次檢查top -c時顯示如下:

743204 (Trace) (Kill)   affinity    0     4.34  0.14    /usr/bin/php /home/affinity/public_html/index.php
743251 (Trace) (Kill)   sdoifn3m2   0     4.01  0.12    /usr/bin/php /home/sdoifn3m2/public_html/index.php
743228 (Trace) (Kill)   noidaads    0     3.96  0.12    /usr/bin/php /home/noidaads/public_html/index.php
743323 (Trace) (Kill)   hotelhil    0     2.39  0.07    /usr/bin/php /home/hotelhil/public_html/index.php
742994 (Trace) (Kill)   xtremeit    0     2.26  0.13    /usr/bin/php /home/xtremeit/public_html/index.php
743013 (Trace) (Kill)   xtremeit    0     2.19  0.12    /usr/bin/php /home/xtremeit/public_html/index.php
742914 (Trace) (Kill)   mjtouchc    0     1.43  0.10    /usr/bin/php /home/mjtouchc/public_html/index.php
742373 (Trace) (Kill)   mjtouchc    0     1.36  0.14    /usr/bin/php /home/mjtouchc/public_html/index.php
743278 (Trace) (Kill)   ypages99    0     1.20  0.18    /usr/bin/php /home/ypages99/public_html/index.php

Wordpress 的工作原理是只載入一個index.php帶有附加請求參數的請求參數,這些參數控制在瀏覽器中顯示哪些數據庫條目。

我手頭沒有安裝 wordpress,所以參數可能不同,但它的工作原理大致如下:

http://example.org/wp/index.php?id=222 

會告訴 Wordpress 載入內部 id 為 222 的部落格條目並顯示它。

引用自:https://serverfault.com/questions/803958