Mod_rewrite 与任何 utf8 字符

发布于 2024-12-10 10:31:51 字数 486 浏览 0 评论 0原文

我需要使用这种格式的链接: http://site.com/index (或 /index-blahblah 或 /index1 或 /index1-blahblah )

其中 blahblah 可以包含任何 UTF 8 字符

我在下面编写了规则,但它不起作用......请帮忙!

AddDefaultCharset UTF-8 
RewriteRule ^/?(index|index1)-?(.*)$ main.php?page=$1&keyword=$2 [NC,B,L]

如果我输入一个范围,它确实有效...但不能使用“.”

RewriteRule ^/?(index|index1)-*([A-Z]*)$ main.php?page=$1&keyword=$2 [NC,B,L]

I need to use links in this format:
http://site.com/index
(or /index-blahblah or /index1 or /index1-blahblah )

where blahblah can contain any UTF 8 character

I wrote the rule below but it doesn't work....please help!

AddDefaultCharset UTF-8 
RewriteRule ^/?(index|index1)-?(.*)$ main.php?page=$1&keyword=$2 [NC,B,L]

It does work if I put a range ...but not with '.'

RewriteRule ^/?(index|index1)-*([A-Z]*)$ main.php?page=$1&keyword=$2 [NC,B,L]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

另类 2024-12-17 10:31:51

domain.com/category-name/ 到domain.com/categories.php?name=category-name

RewriteRule ^([A-Za-z0-9-]+)/?$categories.php?name=$1 [L]

我认为这个例子可能会有所帮助。

domain.com/category-name/ to domain.com/categories.php?name=category-name

RewriteRule ^([A-Za-z0-9-]+)/?$ categories.php?name=$1 [L]

I think this example might help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文