Mobile app version of vmapp.org
Login or Join
Annie201

: Wix Causing Redirect Issues for WP-Admin My company's first site was on wix.com. We're now switching to WordPress, and it's caused issues. So basically how we have it, is we bought our domain,

@Annie201

Posted in: #WebHosting #Wordpress

My company's first site was on wix.com. We're now switching to WordPress, and it's caused issues.

So basically how we have it, is we bought our domain, and we were redirecting it to our wix site. But now when I go to the wp-admin URL it tries to redirect it to wix.

So example.com/wp-admin redirects to a 404 on Wix.

Is there anyway to have it still redirect to Wix but to be able to use that URL to do some work on our new site?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Annie201

3 Comments

Sorted by latest first Latest Oldest Best

 

@Karen161

Below is a screenshot of the root directory of a WordPress install. When you type yourdomain.com/wp-admin you are really loading yourdomain.com/wp-admin/index.php which in turn loads /wp-login.php in the root folder along with a number of files in all of these folders. Some are checked, some are loaded, some are referenced when WordPress initializes.

My recommendation is to keep WordPress and Wix totally separate from each other. When you are ready to launch your WP site, let everyone know the day has come and do the unveiling. Until then, keep them separate...

Another choice would be to install WordPress in a separate folder such as in yourdomain.com/wp In that case you may have better luck with redirecting from your root folder. I still do not recommend it.

I am not an expert on .htaccess nor on WordPress. My recommendation is based on my personal experiences.

10% popularity Vote Up Vote Down


 

@Pierce454

To clarify, you want to be able to develop the wordpress site while the site continues to work at Wix, right?

You need to make sure your hosting service supports temporary URLs like 123.456.789.000/~user then change the 2 URLS in your wordpress dashboard settings to that.

Then you will be able to access the dashboard via 123.456.789.000/~user/wp-admin
When you are ready to go live, you change the settings to the proper URL, change the nameservers or DNS so your site points to your wordpress install and you should be good to go.

10% popularity Vote Up Vote Down


 

@Megan663

If you redirect with mod_rewrite, you can set up a rewrite condition such that it will redirect everything except wp-admin:

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/wp-
RewriteRule (.*) mywixsite.example.com/ [R]

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme