允许在 .htaccess mod_rewrite 中使用外来字符
有没有办法允许 .htaccess mod_rewrite 字符集中出现外来字符?即,一种将 ç 等外来字符添加到 ([Az]+)
的方法?
Is there a way to allow foreign characters in .htaccess mod_rewrite character sets? i.e., a way to add foreign characters like ç and others to ([A-z]+)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定 Apache 使用什么字符编码解释配置文件(如 .htaccess 文件)中的数据。但是您可以使用十六进制表示法
\xhh
来表达这些字符,例如:现在您需要知道的是这些字符在请求时如何编码(通常是 ISO 8859-1 或 UTF-8)。
I’m not quite sure with what character encoding Apache interprets the data in configuration files like the .htaccess file. But you can express these characters with the hexadecimal notation
\xhh
like:Now all you need to know is how these characters are encoded when requested (in general either ISO 8859-1 or UTF-8).