By pinheiropt
I’m trying to configure multisites on my one-click wordpress installation. The problem I’m finding is: When I add allow multisite to wp-config
/* Multisite */
define('WP_ALLOW_MULTISITE', true);
On network setup I’m getting the message of Subdomain Installation “Because your installation is not new, sites on your WordPress network must use subdomains. The main site of a subdirectory installation needs to use a modified permanent link structure, with the potential to invalidate existing links.”
I don’t want to install others sites in subdomains. How can I configure this?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hello, @pinheiropt
To have sub-directories structure on old WordPress installation while activating the Network feature, you just need to add the following code in your current theme’s functions.php file.
add_filter( 'allow_subdirectory_install',
create_function( '', 'return true;' )
);
That’s it. Now reload the Network page from Dashboard and you should see option to choose between sub-domain and sub-directory. Once you complete the Network activation process by adding the wp-config.php and htaccess code suggested on next page on Dashboard, you may remove the code from functions.php or even can change the theme template.
I hope this helps. Let me know how it goes.
Regards, Alex
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
