Multisite with subdirectory – Page not found issue
-
Recently bought a plugin that allow creations of Facebook fan pages with WordPress and allows multisite (for creations of clients fan pages)
Network created. All are great. Main site works fine. But am having problem with other sites created. Page not found!
Main site:
Home – https://fb-fan-page.most-effective-solution.com/blog/wp4fb-iframe/home/ – works great
Order – https://fb-fan-page.most-effective-solution.com/blog/wp4fb-iframe/order/ – works greatTest site:
Home – https://fb-fan-page.most-effective-solution.com/test-site/wp4fb-iframe/home/ – Page not found!
Test Order – https://fb-fan-page.most-effective-solution.com/test-site/wp4fb-iframe/test-order/ – Page not found!Resave the permalinks – does nothing.
.htaccess – does nothing.
# 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).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
# END WordPresshttpd.conf – tested 3 settings – does nothing.
Setting #1:
<Directory “/home/borzack/public_html/fbfanpage”>
Options Indexes FollowSymLinks
AllowOverride All
</Directory>Setting #2:
<Directory “/home/borzack/public_html/fbfanpage”>
AllowOverride FileInfo Options
</Directory>Setting #2:
<Directory “/home/borzack/public_html/fbfanpage”>
AllowOverride All
</Directory>Please help me!
- The topic ‘Multisite with subdirectory – Page not found issue’ is closed to new replies.