Hello there!
As I am not ready yet to switch from vBulletin to XenForo but have to move forward with PHP, I decided to switch from vbSEO to DBSEO. I run vBulletin and WordPress side by side which works fine. But when I switch from vbSEO to DBSEO, I get the error "ERR_TOO_MANY_REDIRECTS".
Current situation:
vBulletin is installed in the domain root.
WordPress is installed in the subfolder "news".
The index.php from vBulletin was replaced by the index.php from WordPress with the following content:
<?php
/**
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require( dirname( FILE ) . '/news/wp-blog-header.php' );
This is the content of my htaccess file:
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} !dbseourl=
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php|reviewpost/|classifieds/|photopost/)
RewriteRule ^(.*\.php)$ dbseo.php?dbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Forum Homepage in vBulletin is set to forum.php
If you need any additional information, let me know.
As I am not ready yet to switch from vBulletin to XenForo but have to move forward with PHP, I decided to switch from vbSEO to DBSEO. I run vBulletin and WordPress side by side which works fine. But when I switch from vbSEO to DBSEO, I get the error "ERR_TOO_MANY_REDIRECTS".
Current situation:
vBulletin is installed in the domain root.
WordPress is installed in the subfolder "news".
The index.php from vBulletin was replaced by the index.php from WordPress with the following content:
<?php
/**
- Front to the WordPress application. This file doesn't do anything, but loads
- wp-blog-header.php which does and tells WordPress to load the theme.
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require( dirname( FILE ) . '/news/wp-blog-header.php' );
This is the content of my htaccess file:
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} !dbseourl=
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php|reviewpost/|classifieds/|photopost/)
RewriteRule ^(.*\.php)$ dbseo.php?dbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Forum Homepage in vBulletin is set to forum.php
If you need any additional information, let me know.