Desperately Need Your Help (301 Redirection)

simplehuman21

Junior Member
Joined
Sep 29, 2019
Messages
144
Reaction score
43
Hey guys, really need help on 301 redirection. So the problem is, it works fine for the homepage redirect but the problem is, my inner pages aren't redirect well. I mean it this way:

let's say my site is xxxx.com and I redirected it to cccc.com, when I type xxxx.com, it will redirect fine to cccc.com, no problem, but when I open xxxx.com/blog for example, it doesn't redirect to cccc.com/blog!!!

do you have any idea on how to fix this? the redirections aren't working for my inner pages :(
Thank you in advance!
 
Paste this to your .htaccess
Code:
RewriteEngine on
RewriteRule ^(.*)$ https://www.cccc.com/$1 [R=301,L]

It works!! thank you so much!!
apparently there were some misplaced rules right there in my htaccess and when I changed it, everything works properly now.
Thanks once again!
 
Back
Top