Fred.
Well-known member
Hi,
I'm trying to figure out how to rewrite my vBSEO urls to XenForo friendly urls.
All the ID's are still the same, and all the old and new id's are in archived_import_log
I have Kier his redirect scripts (V6) in the main directory were XenForo is located
http://xenforo.com/community/threads/redirection-scripts-for-vbulletin-3-x.5030/
In 301config.php i changed the location to XenForo and archived_import_log.
in .htaccess i have
But i keep getting
XenForo - Error
The requested page could not be found.
I probably do something wrong. But i have no idea what's wrong...
Can anyone help me?
Thanks!
I'm trying to figure out how to rewrite my vBSEO urls to XenForo friendly urls.
All the ID's are still the same, and all the old and new id's are in archived_import_log
I have Kier his redirect scripts (V6) in the main directory were XenForo is located
http://xenforo.com/community/threads/redirection-scripts-for-vbulletin-3-x.5030/
In 301config.php i changed the location to XenForo and archived_import_log.
in .htaccess i have
Code:
# vBSEO to XF
# RewriteEngine on
# RewriteRule [^/]+/([\d]+)-.+-([\d]+).html showthread.php?t=$1&page=$2 [NC,L]
# RewriteRule [^/]+/([\d]+)-.+.html showthread.php?t=$1 [NC,L]
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
<IfModule mod_rewrite.c>
RewriteEngine On
# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
# RewriteBase /xenforo
# This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
RewriteRule [^/]+/([\d]+)-.+-([\d]+).html showthread.php?t=$1&page=$2 [NC,L]
RewriteRule [^/]+/([\d]+)-.+.html showthread.php?t=$1 [NC,L]
</IfModule>
But i keep getting
XenForo - Error
The requested page could not be found.
I probably do something wrong. But i have no idea what's wrong...
Can anyone help me?
Thanks!