Home > Article > CMS Tutorial > How to implement tag tag Chinese url in Empire Cms
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].'5db79b134e9f6b82c0b36e0489ee08ed'.$br;
$str.=$jg.'6a9a652c8523b4b4c0f71fa2888a274b'.$r[$i].'4a11e5928b3688cf38c9163b657eb5ac'.$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!