在.htaccess 中隱藏.php 副檔名:綜合解決方案
在Web 開發中,通常需要隱藏.php 檔案副檔名增強URL 的美感並防止惡意活動。然而,實現這一點有時會帶來挑戰。
實作解決方案
要使用.htaccess 有效隱藏.php 副檔名,請考慮下列程式碼:
RewriteEngine On # Unless directory, remove trailing slash RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/$ http://example.com/folder/ [R=301,L] # Redirect external .php requests to extensionless URL RewriteCond %{THE_REQUEST} ^(.+)\.php([#?][^\ ]*)?\ HTTP/ RewriteRule ^(.+)\.php$ http://example.com/folder/ [R=301,L] # Resolve .php file for extensionless PHP URLs RewriteRule ^([^/.]+)$ .php [L]
說明
以上是如何在 .htaccess 中隱藏 PHP 擴充功能:綜合指南?的詳細內容。更多資訊請關注PHP中文網其他相關文章!