如何使用.htaccess 隱藏.php 副檔名
刪除.php 檔案副檔名是維護網站整潔和增強網站效能的有用技術。使用者體驗。然而,實現這一目標可能具有挑戰性。
詳細說明:
您的程式碼嘗試重寫「資料夾」目錄中的 URL,將它們重新導向到其 .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]
進一步指導,請參閱所引用的問題的解決方案:https://stackoverflow.com/questions/14425845/remove-php-extension -with-htaccess。
以上是如何使用 .htaccess 從我的網站 URL 中刪除 .php 副檔名?的詳細內容。更多資訊請關注PHP中文網其他相關文章!