在網站目錄新增 .htaccess 檔案
.htaccess 的內容如下
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^\.]+)/?$ $1.php [L]
以上代碼會將網址 “http://example.com/test.php” 轉換為 “http://example.com/test”
將副檔名 .php 隱藏,此方法只適用於Apache Server