After chaned mod Cyb Advanced forum rules, I've desided to set redirects fro old link to new location. Did this rule:
'^misc\.php\?do=cfrules$' => 'rules/'
As you can see, it doesn't work:
Смайлы - RC Форум
No redirect hapens.
This is a discussion on Redirect rule doesn't work within the General Discussion forums, part of the vBSEO SEO Plugin category; After chaned mod Cyb Advanced forum rules, I've desided to set redirects fro old link to new location. Did this ...
After chaned mod Cyb Advanced forum rules, I've desided to set redirects fro old link to new location. Did this rule:
'^misc\.php\?do=cfrules$' => 'rules/'
As you can see, it doesn't work:
Смайлы - RC Форум
No redirect hapens.
Hello Vitaly,
I guess it doesn't work because you don't have Cyb Advanced Rules installed anymore so misc.php file can't find "cfrules" request.
Andrés Durán / Crawlability Inc.
¡vBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ¡AHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter
Please, check link first. URL exists. Even if mod is not installed.
Of course exists, but it doesn't take you to the "cfrules" page because it doesn't exists anymore, it's like an invalid request. You can see the same if you go for example to "forum.php?do=cfrules", you always will see the forum main page.
Andrés Durán / Crawlability Inc.
¡vBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ¡AHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter
Chuta, AFAIK, redirect rules are designed specially for such cases. To redirect browser from outdated addresses to new location.
I'd like to get answer from VBSEO stuff.
Andrés Durán / Crawlability Inc.
¡vBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ¡AHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter
As misc.php is a core vb script, this likely won't work in the Custom Redirects panel. You should move a rule like this directly into the htaccess file so it runs before vbseo.
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
What prevents to make it work from panel? Where can i read docs, when VBSEO redirects work, and when not?
In general, as the title suggests, these areas are for "CUSTOM" scripts, not core vb files. myscript.php can easily redirect to /rules if you wish.
SOME core scripts MAY work. ie, the calandar. But in general, if it ships with vb, it won't work in these areas all the time.
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
If you still want to do the redirect, you can use a RewriteRule in your .htaccess file:
I've tested and also a CRR can help you:Code:RewriteRule ^misc\.php\?do=cfrules$ rules/ [L]
It will take you automatically to your "rules/" pageCode:'^misc\.php\?do=cfrules$' => 'rules/'.
Andrés Durán / Crawlability Inc.
¡vBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ¡AHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter