HostingClean Posted February 5, 2021 Share Posted February 5, 2021 Hello, As the title states, I would love to remove the store word from my URL. https://www.domain.com/store/Cloud-Hosting to https://www.domain.com/Cloud-Hosting How can I do that? Thank you 0 Quote Link to comment Share on other sites More sharing options...
markc Posted February 16, 2021 Share Posted February 16, 2021 In my case the extra /store part of the URL was preventing new users from accessing the products altogether. I partly solved it in nginx but rewriting the URL to completely remove "/strore"... rewrite ^/store(.*)$ $1 last; 0 Quote Link to comment Share on other sites More sharing options...
tension Posted August 24, 2021 Share Posted August 24, 2021 On 2/16/2021 at 12:27 PM, markc said: In my case the extra /store part of the URL was preventing new users from accessing the products altogether. I partly solved it in nginx but rewriting the URL to completely remove "/strore"... rewrite ^/store(.*)$ $1 last; The rules you give are for nginx, is there any for apache? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.