mirror of
https://github.com/neocities/neocities.git
synced 2025-04-26 10:12:34 +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
|