0
在過去的2個小時裏,我一直在解決這個問題,並試圖自己弄清楚。你不這樣做。.htaccess URL重寫問題
所以...我想重寫我的網址(www.domain.com/article/hello)到www.domain.com/article/read/hello,但我似乎無法弄清楚。 我目前的.htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteBase/
#problem here
RewriteRule ^article\/(.*)$ index.php/article/read/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#this has to stay the same and it's actually working
RewriteRule ^(.*)$ index.php/$1 [L]
如果我嘗試重定向,因爲它是應該(在規則中加入R)不工作規則 - >一切工作正常的,但是這不是重點,我不希望它重定向。
我在錯誤的地方看了2個小時。噢..謝謝,改變了我的REQUEST_URI,它現在很好用! – MJA
@一個包我很高興它現在爲你工作:) – Paulpro