How can I redirect my wordpress shop page from. www.domain/shop to shop.domain.
Please help
Also my site has been adding deleted products to my customers orders.
They are not being charged for the deleted orders, but the orders showing up on their receipts is causing alot of confusion.
Thank you!
How can I redirect my wordpress shop page from. www.domain/shop to shop.domain.
Please help
Also my site has been adding deleted products to my customers orders.
They are not being charged for the deleted orders, but the orders showing up on their receipts is causing alot of confusion.
Thank you!
Share Improve this question asked Dec 16, 2016 at 22:39 yvesyves 11 bronze badge1 Answer
Reset to default 0You could modify the servers htaccess file. Try this:
# This will redirect a subdomain to another domain
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.yourdomain\$ [NC]
RewriteRule ^(.*) http://shop.newdomain/$1 [L,R]
This should redirect anyone from the www. to the shop. domain.