admin管理员组

文章数量:1394217

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 badge
Add a comment  | 

1 Answer 1

Reset to default 0

You 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.

本文标签: woocommerce shop page Redirect Help