Answer the question
In order to leave comments, you need to log in
How to return a site from multisite to a regular site?
I want to return the multisite back to normal. How can this be done?
Answer the question
In order to leave comments, you need to log in
IMHO, it's better not to use redirect plugins at all, but to use server redirects. If you have Apache (most often), then this is editing .htaccess in the root of the site.
The rules for the redirect have already been described a hundred times where possible, I will give an example of simple redirects for redirecting from the www version and with mandatory HTTPS:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.ВАШДОМЕН\.ВАШАЗОНА$
RewriteRule ^(.*)$ http://ВАШДОМЕН.ВАШАЗОНА/$1 [R=301,L]
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
Redirect 301 /относительный/адрес/без/домена/СТРАНИЦА.php https://ДОМЕН.ЗОНА/абсолютный/адрес/новой/СТРАНИЦЫ.php
</IfModule>
How to Revert a WordPress Multisite to a Single-site The world is open. But you limit yourself to sandboxes like VK and toaster...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question