mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
7 lines
166 B
Ruby
7 lines
166 B
Ruby
get '/blog/?' do
|
|
redirect 'https://blog.neocities.org', 301
|
|
end
|
|
|
|
get '/blog/:article' do |article|
|
|
redirect "https://blog.neocities.org/#{article}.html", 301
|
|
end
|