1
我需要一些幫助改寫以下網址的:htaccesss重寫將無法正常工作
example.com/news/top/2/
example.com/news/top/
這是我目前的.htaccess文件
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/\.]+)/([^/\.]+) index.php?view=$1&task=$2
RewriteRule ^news/([^/\.]+)/([0-9]+) index.php?view=news&task=$1&page=$2 [L]
RewriteRule ^news index.php?view=news
我認爲這會工作,但每當我訪問= example.com/news/top/2/ 我嘗試呼應了$ _GET [「頁」]它說,變量是沒有定義的。
somone pleas可以幫助解決這個神經斷裂問題嗎?
謝謝你這個工作。 – rokkz
@rokkz:很高興知道它爲你工作。 – anubhava