WordPress URL error for links

This should be solved by http:// in front of site_url and home in the wp_options table of your database.

You can try adding below in wp-config.php

define( 'WP_SITEURL', 'http://subdomain.example.com' );
define( 'WP_HOME', 'http://subdomain.example.com' );

For more details follow this link hope this will help.