php mod_rewrite 希腊字符问题

发布于 2024-12-29 20:04:06 字数 269 浏览 0 评论 0原文

伙计们,这让我发疯了..

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

始终不够 2025-01-05 20:04:06

使用 mod_rewrite,尝试将其添加到文档根目录中的 .htaccess 文件中。您需要对 υπηρεσίες 使用 unicode 正则表达式(例如 \x##\x##):

RewriteEngine On
RewriteRule ^\xCF\x85\xCF\x80\xCE\xB7\xCF\x81\xCE\xB5\xCF\x83\xCE\xAF\xCE\xB5\xCF\x82/?$ /services/index.php [L]

当有人请求 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##):

RewriteEngine On
RewriteRule ^\xCF\x85\xCF\x80\xCE\xB7\xCF\x81\xCE\xB5\xCF\x83\xCE\xAF\xCE\xB5\xCF\x82/?$ /services/index.php [L]

This will make it so when someone requests blahblah.com/υπηρεσίες or blahblah.com/υπηρεσίες/, they get served blahblah.com/services/index.php

微暖i 2025-01-05 20:04:06

举个例子:

<IfModule mod_rewrite.c> 
    RewriteEngine on
    RewriteRule ^([α-ωΑ-Ω0-9-/]+).html$ your-page.php?url=$1
    RewriteRule ^([α-ωΑ-Ω0-9-/]+).html/$ your-page.php?url=$1
</IfModule> 

As an example:

<IfModule mod_rewrite.c> 
    RewriteEngine on
    RewriteRule ^([α-ωΑ-Ω0-9-/]+).html$ your-page.php?url=$1
    RewriteRule ^([α-ωΑ-Ω0-9-/]+).html/$ your-page.php?url=$1
</IfModule> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文