iT邦幫忙

0

建置Wordpress後輸入本機IP仍然顯示Nginx歡迎畫面 無法直接進入Wordpress首頁

  • 分享至 

  • xImage

各位前輩好
小弟我剛入門Rocky Linux系統
但因工作業務的關係要先建置Wordpress網站
選擇LEMP做為Wordpress的建置環境
以下是我參考的網站:
https://tonyteaches.tech/rocky-linux-wordpress-lemp/#comment-1106
一開始輸入 http://本機IP/index.php 後才能進入Wordpress安裝流程
雖然有建置完成
但輸入本機IP後無法直接進入Wordpress首頁
依舊顯示Nginx歡迎畫面
不知問題出在何處
以下是Nginx的.conf設定內容:

server {
   listen 80;
   server_name 本機IP;

   root /var/www/wordpress/;
   index index.php;

   location / {
      try_files $uri $uri/ =404;
   }

   location ~ \.php$ {
      try_files $uri =404;
      fastcgi_pass unix:/var/run/php-fpm/www.sock;
      fastcgi_index index.php;
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
      include fastcgi_params;
   }
}

還請各位前輩高手多多指點!感謝!
如需要其他資訊還請各位多多提點!

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
apparition
iT邦新手 4 級 ‧ 2024-04-02 16:50:19
最佳解答

https://ithelp.ithome.com.tw/upload/images/20240402/20130315jF5u6QiKbd.png
ip拿掉試試看,然後你路徑wordpress後面是不是多了斜線?

https://ithelp.ithome.com.tw/upload/images/20240402/20130315TxV0TMEuaG.png
這裡資訊確定是對的嗎?

我要發表回答

立即登入回答