The following tutorial column from Empire cms secondary development will introduce to you the method of Imperial cms to improve the opening speed of website pages. I hope it will be helpful to friends in need!
tag displays the Chinese path, modify the file /e/class/t_functions.php file:
This paragraph:
$str.=$jg.'& lt;a href="'.$public_r[newsurl].'e/tags/?tagid='.$r[tagid].$cs.'" target="_blank">'.$font1.$r[tagname].$snum.$font2.'</a>'.$br;
Modify to :
$str.=$jg.'<a href="'.$public_r[newsurl].'e/tags/?tagname='.$r[tagname].$cs.'" target="_blank">'.$font1.$r[tagname].$snum.$font2.'</a>'.$br;
Test after modification
This call [showtags]'',0,0,'',0,s,'',1,''[/showtags]
(Calling all tags)
What is displayed is the normal Chinese address?tagname=Baidu Optimization
And the content page call [showtags]'selfinfo ','',0,'','','','',0,''[/showtags]
shows other codes ?tagname=ͼƬ
Why not display Chinese directly? I want the content page to also display this kind of address? tagname=Baidu optimization
Modify t_functions.php
##$str.=$jg.'< ;a href="'.$public_r[newsurl].'e/tags/?tagname='.urlencode($r[$i]).$cs.'" target="_blank">'.$r[ $i].''.$br;
$str.=$jg.''.$r[$i].' a>'.$br;
The above is the detailed content of How to implement tag tag Chinese url in Empire Cms. For more information, please follow other related articles on the PHP Chinese website!