Greasy Fork is available in English.

Redirect all to update.facebook.com (Old layout Facebook w.o UserAgent change)

This script automatic remote all traffic from facebook.com to upload.facebook.com (this is old layout sub domain)

// ==UserScript==
// @name        Redirect all to update.facebook.com (Old layout Facebook w.o UserAgent change)
// @description This script automatic remote all traffic from facebook.com to upload.facebook.com (this is old layout sub domain)
// @include     https://www.facebook.com*
// @exclude     https://www.facebook.com/messages/*
// @version     1
// @run-at      document-start
// @namespace https://greasyfork.org/users/152841
// ==/UserScript==

var currentUrl = window.location.toString();
if (currentUrl.indexOf('www.facebook.com') !== - 1)window.location = currentUrl.replace('www.facebook.com', 'upload.facebook.com');