1. 先建立新的.htaccess檔案放在php檔案的目錄。
2. 建立一個Rewrite Engine (URL重寫工具)。
在檔案第一行寫上
RewriteEngine on
3. 設定所在目錄 / 譬如 /test/
RewriteBase /test/
4. php 轉換成 html
RewriteCond %{THE_REQUEST} (.*)\.php
RewriteRule ^(.*)\.php $1.html [R=301,L]
RewriteCond %{THE_REQUEST} (.*)\.html
RewriteRule ^(.*)\.html $1.php [L]
------------------
完整檔案內容
------------------
RewriteEngine On
RewriteBase /test/
RewriteCond %{THE_REQUEST} (.*)\.php
RewriteRule ^(.*)\.php $1.html [R=301,L]
RewriteCond %{THE_REQUEST} (.*)\.html
RewriteRule ^(.*)\.html $1.php [L]