的時間已經到了隱藏GET變量,但我的.htaccess文件不會允許rewrite.I目前有這樣的:.htaccess文件的工作,但不能重寫URL
RewriteEngine On
RewriteRule ^timeline/(\d.*) timeline.php?user=$1
這是timeline.php?user=chris
而且必須閱讀timeline.php
我已經找了接近2小時,複製和更改代碼,但沒有任何工作。
我也改變了
<Directory ..>
...
AllowOverride None
...
</Directory>
到:
AllowOverride All
請幫幫忙!
我不認爲你可以隱藏像這樣的變量。最好的情況下,你可以做'timeline.php/user/chris'或類似的東西,你的重寫將「chris」填充到「user」$ _GET變量中。 –
此外,這不是一個獨特的問題:http://stackoverflow.com/questions/14415685/htaccess-hide-php-get-variables –
@cale_b我說我一直在研究它近一個小時,但沒有一個代碼幫助 – user3241507