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!
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.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.