Redirection problem after moving wordpress to subdirectory
-
I’m currently using WordPress 4.8 with permalink structure of https://www.example.com/%category%/%postname%/. I also use Redirection plugin. After awhile, I decided to move my wordpress installation from Root to Subdirectory using this tutorial from official www.remarpro.com. I followed exactly like first method. It works but from time to time I receive a lot of 404 errors log in Redirection plugin log and Google Search Console log.
I created subdirectory for wordpress using same name with domain name. Assume my domain is https://www.example.com. I created subdirectory name of https://www.example.com. Reason because I have multiple addon domains which I installed wordpress in similar way. Only this main domain have problem.
PROBLEM: I often receive 404 errors log in Redirection plugin log and Google Search Console. Assume I have a page of hahaha then my URL error look like this https://www.example.com/www.example.com/category/hahaha/ instead of https://www.example.com/category/hahaha/ and this is happened everyday on many URL’s even newer posts. With exception of my index.php where my https://www.example.com/www.example.com/index.php always redirect to https://www.example.com/ without any problem and no error logs.
.HTACCESS On Root:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^(www.)?example.com$ RewriteCond %{REQUEST_URI} !^/www.example.com/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^(.*)$ /www.example.com/$1 RewriteCond %{HTTP_HOST} ^(www.)?example.com$ RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^(/)?$ www.example.com/index.php [L] </IfModule>
.HTACCESS On Subdirectory:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] </IfModule> # END HTTPS # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
QUESTION:
How do I add a wildcard redirects which will redirect anything matching condition https://www.example.com/www.example.com to https://www.example.comExample:
- https://www.example.com/www.example.com/pageA/ to https://www.example.com/pageA/
- https://www.example.com/www.example.com/Category1/pageB/ to https://www.example.com/Category1/pageB/
- https://www.example.com/www.example.com/Category2/pageC/ to https://www.example.com/Category2/pageC/ and so on.
I’ll be honest. I do know how to redirect oldPage to newPage but seems this is out of my knowledge. I tried many tutorial on google and redirect generator etc but still I receive 404 error logs of that kind. Please help me. Thank in advance.
- The topic ‘Redirection problem after moving wordpress to subdirectory’ is closed to new replies.