php網站首頁動態地址修改,如何將PHP網站首頁的動態地址改為靜態地址

黄文Rex發表於2024-12-08

將PHP網站首頁的動態地址改為靜態地址可以提升SEO效果。以下是具體步驟:

  1. 啟用URL重寫

    • 對於Apache伺服器,在 .htaccess 檔案中新增以下程式碼:
      apache
      RewriteEngine On RewriteRule ^index\.html$ index.php [L]
    • 對於Nginx伺服器,在 nginx.conf 檔案中新增以下程式碼:
      nginx
      rewrite ^/index\.html$ /index.php last;
  2. 修改首頁檔案

    • index.php 檔案重新命名為 index.html,或者在 index.html 檔案中使用PHP程式碼:
      php
      <?php include('index.php'); ?>
  3. 更新內部連結

    • 在網站的所有頁面中,將指向 index.php 的連結修改為 index.html
  4. 測試效果

    • 在瀏覽器中訪問 index.html,確保頁面內容正確載入,沒有404錯誤。

相關文章