Kayako logo
Developers & Code Interested in customizing your Kayako products? Discuss modifications and develop your own mods with the community.

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#1) Old
hawk Offline
New Member
 
Posts: 6
Join Date: Jan 2005
Transparent redirection of Knowledgebase URLs after upgrade from v2.3.5 to v3.x - 02-09-2006, 11:17 AM

We solved this problem by adding the following code at the top of main index.php file :

PHP Code:
if(!strncmp($_SERVER['QUERY_STRING'], '_a=knowledgebase&_j=questiondetails&_i='39)){
  
header('HTTP/1.0 301 Moved Permanently');
  
header('Location: index.php?_m=knowledgebase&_a=viewarticle&kbarticleid='.(int)$_GET['_i']);
  exit;



Vladimir
Esvon.Com - Professional Classified Ads Software Solutions
   
Reply With Quote
Reply

Tags
knowledgebase, redirection, transparent, upgrade, urls, v3x

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46