I'm developing a new website to replace our old website. The URL the dev site is 11.22.33.44/~abc/ (not that IP exactly) because that's what Host Gator gave me to use. Once complete, I'll change DNS servers so our domian name points to that server and not our old one.
I'm using Drupal and am taking great care to keep all links relative. However, because of the /~abc/ in the dev URL, it's not always possible to keep it relative and many links will break. Within the drupal system or anywhere drupal PHP is used, like for menus, it can figure out the URL on it's own. But for any images and links entered into the WYSIWYG, those will break.
Can a soft link (symbolic link) fix this problem? Should I use the command ln -s /~abc /? Will the URL mywebsite.org/~abc/node/1 then show the page mywebsite.org/node/1 ??
I know this is not ideal for SEO, maintenance, and other reasons. But it would make the migration much smoother and quicker. Thanks!