Customize WordPress Upload Directory

Can’t test at the moment but I’d try rewriting the date to variable code from: $time = current_time( ‘mysql’ ); $y = substr( $time, 0, 4 ); $m = substr( $time, 5, 2 ); $subdirectory = “/$y/$m”; To: $y = date(‘Y’); $m = date(‘m’); $subdirectory = “https://wordpress.stackexchange.com/” . $y . “https://wordpress.stackexchange.com/” . $m;

Edit image itself

There is no default way to do this, but this popular plugin solves the issue for most people. I have no connection to the creators of this free plugin, but I’ve used it on several sites. https://wordpress.org/plugins/enable-media-replace/

New wordpress uploads are broken

This line was missing from my .htaccess file, and I recovered it from a backup. I don’t know if WP removed it during an upgrade or some other plugin did it, but replacing it fixed the problem: #uploaded files RewriteRule ^files/(..+) wp-includes/ms-files.php?file=$1 [L] Art Smith