Apache server solves the problem that Chinese url cannot be displayed normally
We use a url encoding function in the php tutorial, and we can use it to solve the problem. The method is as follows.
$interest = "arts";
$homepage = "http://www.zhutiai.com";
$query = "homepage=".urlencode( $homepage );
$query .= "&interest=".urlencode( $interest );
echo $query;
?>