Forums
(@ttux)
4 years, 8 months ago
In case it can help someone else, I fixed it by editing wp-settings.php and added:
$_SERVER['SERVER_PROTOCOL'] = 'https'; $_SERVER['HTTP_HOST'] = 'mysite.com'; $_SERVER['REQUEST_URI'] = '/h'.$_SERVER['REQUEST_URI'];
I realized I had this wrong:
AllowOverride None
So I changed it to:
AllowOverride All
Now when I go to a post page like https://mysite.com/h/mypage it does a 301 redirect to https://wp.mysite.com/hooyu-identify/
Any idea how I can fix it?