Apache – 修改 .htaccess 隱藏網址副檔名

在網站目錄新增 .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

最後重啟 Apache Server 才會生效

開始在上面輸入您的搜索詞,然後按回車進行搜索。按ESC取消。

返回頂部