我想隱藏「www.blahblah.com/index.php」中的「index.php」?怎麼做?從「www.blahblah.com/index.php」隱藏「index.php」
Please help,我現在有很多的代碼,我打算從網站掩藏index.php
。我搜索了一下,發現你首先需要創建.htaccess
文件。但我不知道從哪裏開始呢?我是否需要與我的項目一起創建該文件?以及在該文件中鍵入什麼內容?
我想隱藏「www.blahblah.com/index.php」中的「index.php」?怎麼做?從「www.blahblah.com/index.php」隱藏「index.php」
Please help,我現在有很多的代碼,我打算從網站掩藏index.php
。我搜索了一下,發現你首先需要創建.htaccess
文件。但我不知道從哪裏開始呢?我是否需要與我的項目一起創建該文件?以及在該文件中鍵入什麼內容?
創建.htaccess文件,然後將代碼複製下面 更改項目 的文件夾中的「project_folder_name」如果你的項目是在剛剛把「/」
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /project_folder_name
# Removes index.php from ExpressionEngine URLs
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
'index.php'你的根文件夾不必隱藏在網址欄中!你可以直接指向'目錄名稱',並自動選擇'index.php'文件!它不會顯示在網址欄中!像:'localhost/Sandbox'(如果你有一個名爲index.php的文件,這個叫做) – Rizier123 2014-11-23 05:36:53
好吧,那怎麼做? – 2014-11-23 05:37:59
如果你建立鏈接,像這樣:'home'而不是'home' – Rizier123 2014-11-23 05:39:02