在 .htaccess 中隱藏 .php 檔案副檔名
使用者經常試圖從其網站的 URL 中隱藏 .php 副檔名。 .htaccess 檔案是一個強大的設定文件,可以幫助實現這一目標。
一次失敗的嘗試涉及以下代碼:
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^folder/([a-zA-Z_\-0-9]+)/?$ /folder/.php </IfModule>
解決方案
更有效的方法使用以下代碼:
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中文網其他相關文章!