MyBB Community Forums

Full Version: mybb not found in wordpress subfolder ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi i want to install mybb on my website and i uploaded everything to this sub folder kurd-ie.com/yana but it gives not found error, my websites root directory has already wordpress installed on

thanks for help
wordpress uses security measures through rewrite rules file (eg. .htaccess) and it might obstruct MyBB
so what i have to do ?
you can try rewrite rule like below in the wordpress .htaccess file after rewrite engine on line
RewriteRule ^yana(/|$) - [L]
i did what you said :


# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^yana(/|$) - [L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

but it didnt work
^ try the suggested code next to RewriteBase /
:/ it didn't work :

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^yana(/|$) - [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Thanks Problem Fixed