我正在做一個項目的更新。它的默認首頁網址是www.test.com/index1.php
。我想從url中隱藏這個index1.php。我嘗試在.htaccess以下重寫規則:使Index1.php在域url的末尾消失。 (在主頁上顯示)
RewriteEngine on
RewriteCond $1 !^(index1\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index1.php/$1 [L,QSA]
但現在顯示網址www.test.com/index1.php
。任何想法?
你是什麼意思「本身」? – xdazz