Wordpress is installed in subfolder. public_html/wordpress/ So, I want to have two sites: mydomain.com/wordpress and mydomain.com/wordpress/fr
mydomain.com/wordpress works without any problems.
When I try to go mydomain.com/wordpress/fr, I'm redirected to Page Not Found of the main site (mydomain.com/wordpress). When I go mydomain.com/wordpress/fr/wp-admin I get 500 Internal Server Error.
Here my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)??les/(.+) wp-includes/ms-?les.php??le=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) wordpress/$2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ wordpress/$2 [L]
RewriteRule . /wordpress/index.php [L]
</IfModule>
Here the part I added to wp-config.php:
define('WP_ALLOW_MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'mydomain.com/wordpress');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
define('WP_ALLOW_REPAIR', true);
Here some settings in Network Panel for my new site: Domain: http://mydomain.com Path: /wordpress/fr/ SiteURL: http://archex.ca/wordpress/fr
Please, help me.
First I don't know if you still need help or not but it might help to someone else in future.
Before sometime I had the same problem. I had enabled the multi site in from wordpress config file, following instructions on WordPress codex site, but getting 404 while accessing domain and 500 while accessing admin panel.
First I solved 500 error by putting
# Tell PHP that the mod_rewrite module is ENABLED. SetEnv HTTP_MOD_REWRITE On
in my
.htaccess
immediately after<IfModule mod_rewrite.c>
The 500 error is gone now, and for 404 I had created new directory to install another WordPress into it.
Thanks to: a.l.e
Cheers & Beers :P