我用htacess刪除php擴展,它的工作,但我也有一個頁面稱爲配置文件,我縮短,但使網頁名稱被視爲一個配置文件用戶名,是否有一個解決這個問題的方法?htaccess在兩個不同的頁面中刪除擴展
我想要的結果是這樣的:
localhost/path_folder/index.php
到localhost/path_folder/index
和
localhost/path_folder/profile?username=name
到localhost/path_folder/name
和我的去除擴展htaccess
代碼:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC]
,並在個人資料頁面的代碼是:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /path_folder/profile.php?username=$1
非常感謝您的完美工作。 –
不客氣,很高興它解決了。 – anubhava