Maison > Article > développement back-end > Comment prendre en charge l'accès au chemin chinois dans la version fenêtre de PHP
本文主要和大家分享window版PHP支持中文路径访问的方法,让浏览器通过中文路径访问到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>
这样就可以咯
相关推荐:
PHP的函数没法获得中文路径中的目录部分及文件名部分
中文路径导致unitpngfix.js不正常的解决方法_基础知识
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!