.htaccess改寫你的網址

前言

通常我們都會在網址上將網頁的副檔名隱藏,一來美觀、二來簡潔這個時候我們就會需要使用到網址rewrite的功能
這個功能如果你的web server是用apache的話記得要將rewrite模組打開

linux : a2enmod rewrite

接者在你的根目錄底下新增一個.htaccess檔案加入以下code就可以隱藏檔案副檔名了

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]

參考資料

How to remove .php, .html, .htm extensions with .htaccess