0
我的index.php
頁面重定向到此類型的URL後處理results.php?token=0e635edc03
。我想隱藏results.php
。所以只是:domain.com/0e635edc03
。htaccess規則重定向用戶沒有頁面名稱
我需要一個.htaccess
規則嗎?
其中.htaccess
規則我需要執行它?
謝謝。
我的index.php
頁面重定向到此類型的URL後處理results.php?token=0e635edc03
。我想隱藏results.php
。所以只是:domain.com/0e635edc03
。htaccess規則重定向用戶沒有頁面名稱
我需要一個.htaccess
規則嗎?
其中.htaccess
規則我需要執行它?
謝謝。
嘗試在你的文檔根目錄添加這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。