B
B
bossigorxxx2020-01-10 09:06:41
WordPress
bossigorxxx, 2020-01-10 09:06:41

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

3 answer(s)
N
Nikita Gennadich, 2019-03-21
@Psychosynthesis

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>

The /blog substitution rules are easy to google for yourself, I guess. Although, 80 posts is not so much, if you can write something with your hands, here is an example:
<IfModule mod_rewrite.c>
  RewriteEngine on

  Redirect 301 /относительный/адрес/без/домена/СТРАНИЦА.php https://ДОМЕН.ЗОНА/абсолютный/адрес/новой/СТРАНИЦЫ.php

</IfModule>

In general, variations are possible, I recommend that you study the mod_rewrite syntax, it will certainly come in handy, especially since you don’t need anything particularly complicated.

V
Vladimir Druzhaev, 2020-01-10
@OtshelnikFm

How to Revert a WordPress Multisite to a Single-site The world is open. But you limit yourself to sandboxes like VK and toaster...

W
WP Panda, 2020-01-10
@wppanda5

The first result from Google
https://wordx.press/how-to-revert-a-wordpress-mult...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question