How to create multi site in wordpress using NS Cloner?
1. Install WordPress Multisite – the Requirements Before you start to install the WordPress multisite, please make sure that: You already have a WordPress installation Pretty Permalinks are activated. This means your URLs should not look like this http://example.com/?p=2345, but rather like this http://example.com/my-page All plugins are deactivated Important: you have a backup of your WordPress installation You have FTP access to your WordPress installation 2. Allow Multisite in wp-config.php The first step is to activate the Multisite feature in the file wp-config.php. Set up a FTP connection to your website. Open the file wp-config.php, which is is located in the main directory of your WordPress, and add the line define('WP_ALLOW_MULTISITE', true); above the line: /* That's all, stop editing! Happy blogging. */ Save the file wp-config.php. Now you enabled the Multisite feature in your WordPress installation. But you haven’t finished yet...