让浏览器通过中文路径访问到php文件,如下图
需要设置url重写,和在index.php文件使用iconv函数
require_once iconv("utf-8","gbk",$_GET["url"]);
目录结构如下
在.htaccess文件配置
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On #RewriteCond %{REQUEST_FILENAME} !-d #RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*(php)+.*)$ index.php?url=$1 [QSA,PT,L]
</IfModule>
这样就可以咯