Can you provide a temporary server login (with access to nginx config) to check this issue?
This is a discussion on 404 / 301 Tool After Import Redirect on ImpEx imported forums within the General Discussion forums, part of the vBSEO SEO Plugin category; Can you provide a temporary server login (with access to nginx config) to check this issue?...
Can you provide a temporary server login (with access to nginx config) to check this issue?
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
I don't think that is a possibility - I can setup a chat session where any changes you request are made in realtime if that helps?
The problem must lie in the if statement (if ($args ~ "topic=([0-9]+)")), as the rule itself isn't being triggered...
What is an example URL you are trying to redirect? You can try case-insensitive version:
if ($args ~* topic=([0-9]+)){
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
case sensitivity shouldn't be the issue... I went from Simple Machines (SMF) to VBulletin - hence the old URL format was:
www.domain.com/forum/index.php?topic=68431
When I hit the old URL, I get the HTTP header "200 OK" - hence the thought that it is a problem in the IF statement...
Please try the version above, may be it would work without quotes.
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Tried it - [emerg]: pattern "^/forum/index\.php" has less captures than referrenced in substitution "/forum/vbseo301.php?action=thread&oldid=$1"
That line should have $bref_1, not $1: 404 / 301 Tool After Import Redirect on ImpEx imported forums
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Unfortunately it still has no effect. I am using this code:
Code:location /forum/ { #Old URL Redirect if ($args ~ topic=([0-9]+)) { set $bref_1 $1; rewrite ^/forum/index\.php /forum/vbseo301.php?action=thread&oldid=$bref_1 last; } }
I just purchases vbseo today, and made some tests.
1º SMF FRIENDLY URL -> SMF NON FRIENDLY URLS (WITH PRETTY URL REVERTER).
2º With htaccess SMF Non Friendly Url -> vbseo301.php
3º vbseo301.php -> vbulletin non Friendly Url.
4º vbullein no friendly url -> vbseo friendly url.
I made some tests, getting old urls from google, all work. This is fantstic tool.
I will post detailed info when finish the migrate form smf to vbulletin.
so any othe ruser in my situation can follow some instruccions
Any other recommendations re :a working NGINX config?
I think we will need server access in order to check this further.
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Hi oleg.
I just finish to move all to vbulletin + vbseo + vbseo301
You can check http://www.clublgmobile.com/foros/] Club LG Mobile (Vbulletin)
And a old urls like this : http://www.clublgmobile.com/foro/ku9...990-liberando/ are redirecting to http://www.clublgmobile.com/foros/ku...990-liberando-[solucionado-gracias].html
This is fine, the problem is i also need to redirect /www.clublgmobile.com/foro/index.php (oldforum) to new one www.clublgmobile.com/foros/]Club LG Mobile
Any rule to redirect this?
Thanks
hello,
please try this:
Code:rewrite foro/index.php$ http://www.clublgmobile.com/foros/ permanent;
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
no luck, it dosent work.
Any other option?
Thanks in advance
Try
and make sure its directly above the vbseo sitemap rule in the htaccess file.Code:redirect 301 foro/index.php http://www.clublgmobile.com/foros/ redirect 301 foro/ http://www.clublgmobile.com/foros/
Brian Cummiskey / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!