2014-10-27 76 views
0

我的index.php頁面重定向到此類型的URL後處理results.php?token=0e635edc03。我想隱藏results.php。所以只是:domain.com/0e635edc03htaccess規則重定向用戶沒有頁面名稱

我需要一個.htaccess規則嗎?

其中.htaccess規則我需要執行它?

謝謝。

回答

0

嘗試在你的文檔根目錄添加這htaccess的文件:

RewriteEngine On 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^([0-9a-f]+)$ /results.php?token=$1 [L,NC] 

現在你需要確保index.php文件重定向到domain.com/0e635edc03,而不是results.php URL。