SoFunction
Updated on 2025-04-06

dedecms v5 jump URL Revised version of implementation method for direct link rather than jump Original

After personal trial and modification, it is available. Now it is provided as follows: [dedecms test]


1. Implementation of list page:

/include/inc_arclist_view.php 
Find
$row['arcurl'] = $this->GetArcUrl( 

In front of it:

if($row['redirecturl']) $row['arcurl'] = $row['redirecturl']; else

[No need to modify other places]

2. Implementation of direct jump to the home page:

/include/inc/inc_fun_SpGetArcList.php 

Find

$row['arcurl'] = GetFileUrl( 

In front of it:

if($row['redirecturl']) $row['arcurl'] = $row['redirecturl']; else 

At the same time, search, add,

Note: This method is not original by me. It is compiled from the methods provided by everyone on the forum. It is applied on your own website and passed without any errors. It is hereby provided for sharing.