伺服器:ubuntu 14.04 nginx php5
網域一個:a.com
部署一套類似wordpress的cms系統,但是現在要求在wordpress之前加個靜態頁面,訪問網站的時候首先顯示這個靜態頁面,然後可以點擊靜態頁面上的窗口進入wordpress。
請問如何實現?
伺服器:ubuntu 14.04 nginx php5
網域一個:a.com
部署一套類似wordpress的cms系統,但是現在要求在wordpress之前加個靜態頁面,訪問網站的時候首先顯示這個靜態頁面,然後可以點擊靜態頁面上的窗口進入wordpress。
請問如何實現?
假設網域是 a.com 靜態頁面是 index.html 你可以如下設定:
<code>server { listen 80; server_name a.com; root /var/www/a.com; location / { index index.html index.php; try_files $uri $uri/ /index.php&is_args&args; } location ~ \.php { # php fastcgi 相关配置 } }</code>
如上配置可以做到,當存在靜態頁面的時候,即顯示靜態頁面,不存在的時候由index.php(也就是wordpress) 來處理,index index.html index.php; 這一行可以在打開a. com/ 的時候預設存取到index.html(如果這個檔案存在),這樣配置就完全滿足了你的需求。
假設你的網域是a.com
,首頁是a.com/index.html
,把wordpress放在a.com/wordpress/
下
然後nginx這麼配置:
<code>server { listen 80; server_name a.com; location / { index index.html; root 你的静态页面路径; } location /wordpress { index index.php index.html; root 你的wordpress路径; # 这里放wordpress 和 PHP 的配置 } }</code>
把wordpress部署在a.com下面的一個欄位中
不是很明白這個需求,是什麼特別的業務需求不允許這個靜態頁放到wordpress裡面嗎?
除了樓上的方法
當然還可以用子網域:
你的靜態頁就放在static.a.com
wordpress 就放在www.a.com
這樣應該更有利於SEO
補充一個,WP後台自訂主題,可以設定靜態首頁。
不好意思看錯了,並不是WP。