我試圖重定向到http://[random-string].domain.com/http://domain.com/folder/[random-string]/簡單htaccess的重定向 - 子域文件夾
目前,我有這樣的:
RewriteCond %{HTTP_HOST} ^.*\.domain\.com
RewriteRule ^.*$ http://domain.com/folder/$1/ [R=301,L]
目前,它指向http://domain.com/folder//。 ($ 1缺失)我該如何解決這個問題?
嗯,$ 1變量仍然缺少。 (它重定向到http://domain.com/folder//) – Yongho 2010-02-26 15:15:13
好吧,我的錯誤,請參閱編輯我的回答(RewrtieCond使用%而不是$) – gregseth 2010-02-26 20:21:22
乾杯!對我來說工作得很好,1美元是獎金。 – 472084 2012-07-04 09:26:42