Site create within wordpress doesnot work " Page cannot be found"
-
Hi There,
I have sucessfully installed WP 3.0.3 and enabled multisites plugin. I choosed sub-directory to create multisite. WordPress allows me to add new site but when I click on visit and backend option in newly created site it redirects to “page cannot be found” error.
Word press is hosted on RHEL 6 wich is our development server and .htaccess file has read access.
Once, I created sub-directory manually inside wordpress root directory and copied all files and directory of word press to it. Then I clicked on visit option of newly created site , it worked. But I dont think this is how it should work.
Its been already 3 days I am trying to find solution but no luck. I read lots of posts but could not find answer. At the moment I am very fraustrated with myself. I will greatly appreciate if anyone can help in this regard.
Code that I used in wp-config.php file
define(‘WP_ALLOW_MULTISITE’, true);
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘wordpress.cdu.edu.au’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );code that i used in .htaccess file
#BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
#END WordPressLooking forward for replies…
- The topic ‘Site create within wordpress doesnot work " Page cannot be found"’ is closed to new replies.