利用.htaccess隱藏副檔名html和php
Temperature: 0 °C
隱藏副檔名html
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
隱藏副檔名php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
https://innstory.com/story-利用htaccess隱藏副檔名html和php-1973
apache