Looks like I found the solution from someone, going to share – hope this helps someone in the FUTURE!
Within PAGES the URL to resources would look like this:
for internal RESOURCES that you must upload to the WP library: (images, PDF files, mov, etc) use: [upload_dir_url]/nameoffile.*
For Linking to OTHER PAGES:
for internal LINKS in WP use: [url]/PageName/
NOTE:
You must add to Function.php the following code:
function upload_dir_shortcode() {
$upload_dir = wp_upload_dir();
return $upload[‘url’];
}
Hope this makes sense, because it worked for my needs to migrate to another SERVER.