我該如何做到這一點http://domain.com 301重定向到http://www.domain.com?我習慣使用.htaccess來ModRewrite它,但是我知道我不能在Heroku上做到這一點。的.htaccess的Heroku 301重定向
例子:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
我的文件結構:
- /public
--- /style
--- index.html
- config.ru
我剛煮好的單頁,和我config.ru由這樣的:
use Rack::Static,
:urls => ["/style"],
:root => "public"
run lambda { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400'
},
File.open('public/index.html', File::RDONLY)
]
}
沒有一個答案在這裏爲我工作,我早就放棄了這個。 – David 2012-10-29 16:59:07
我有完全相同的問題...仍然沒有解決方案? – dinkelk 2013-01-08 21:33:17