php mod_rewrite 希腊字符问题
伙计们,这让我发疯了..
我对 mod_rewrite 主题是业余的..我真的需要你们的帮助..
我想执行以下更改。
blahblah.com/services/index.php
其中
blahblah.com/υπηρεσίες
“υπηρεσίες”是服务的希腊语翻译。我需要它用于 SEO 目的。
任何建议/解决方案将不胜感激!谢谢
Guys this is driving me crazy..
I am amateur in the mod_rewrite topic.. I really need your help over here..
I would like to perform the following change.
blahblah.com/services/index.php
to
blahblah.com/υπηρεσίες
where "υπηρεσίες" is the greek translation for services. I need that for SEO purposes.
Any recommendations/solutions would be appreciated! Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 mod_rewrite,尝试将其添加到文档根目录中的 .htaccess 文件中。您需要对 υπηρεσίες 使用 unicode 正则表达式(例如 \x##\x##):
当有人请求
blahblah.com/υπηρεσίες
或时,这将使其如此blahblah.com/υπηρεσίες/
,他们得到服务blahblah.com/services/index.php
Using mod_rewrite, try adding this to your .htaccess file in your document root. You need to use unicode regular expression for υπηρεσίες (e.g. \x##\x##):
This will make it so when someone requests
blahblah.com/υπηρεσίες
orblahblah.com/υπηρεσίες/
, they get servedblahblah.com/services/index.php
举个例子:
As an example: