通過一些修改可以隱藏網頁文件擴展名爲http://www.abc.com/asd/zxc/而不是zxc.php,但我想要做的是從網址中完全刪除文件名,例如http://www.abc.com/asd/
它不會「不管用戶在哪裏訪問網站,但url應始終保持靜態。使用.htaccess從網址中完全刪除文件名
是否可以這樣做.htaccess
?
我已經嘗試過這一點,但沒有奏效:
RewriteOptions inherit
RewriteEngine On # enables url rewriting
RewriteCond %{REQUEST_FILENAME} !-d # if requested uri is not directory (!-d)
RewriteCond %{REQUEST_FILENAME}\.php -f # and if there is a file named URI+'.php' (-f)
RewriteRule ^(.*)$ $1.php # then if there is any thing in uri then rewrite it as uri+'.php'
我更新了我的答案,現在我已經測試過它來檢查它的工作原理。 – Cyclonecode