HTACCESS 重写多维(例如:www.mysite.com/variable2/variable2

发布于 2024-10-24 07:02:49 字数 307 浏览 0 评论 0原文

嘿,我知道我可以使用 HTACCESS 重写来编写

www.mysite.com/index.php?page=hello&subpage=welcome

欢迎来到

www.mysite.com/1/hello/welcome

但是有什么方法可以将其重写为

www.mysite.com/hello/welcome

??

Hey, I'm aware I could use a HTACCESS rewrite to write

www.mysite.com/index.php?page=hello&subpage=welcome

to

www.mysite.com/1/hello/welcome

But is there any way to rewrite it to

www.mysite.com/hello/welcome

??

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

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

发布评论

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

评论(1

谁的年少不轻狂 2024-10-31 07:02:49

呃,修改一下你的规则吧。像这样的东西应该有效:

RewriteRule ^(.*?)/(.*?)/$  index.php?page=$1&subpage=$2 [NC,L]

Uh, just modify your rule. Something like this ought to work:

RewriteRule ^(.*?)/(.*?)/$  index.php?page=$1&subpage=$2 [NC,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文