如何.htaccess重写规则?

发布于 2024-10-21 21:07:41 字数 477 浏览 2 评论 0原文

我正在尝试创建此地址:

http://www.mysite.co.uk/ Listing/London/34

真正寻找: http://www.mysite.co.uk/Listing/listed.php?area=London&list=34 在幕后。

我在“Listing”文件夹中的 htacess 文件中尝试了此重写,但它不起作用:

RewriteRule ^([a-z0-9]+)/([a-z0-9]+)$ /listed.php?area=$1&list=$2 [NC,L]

i'm trying to make this address:

http://www.mysite.co.uk/Listing/London/34

really look for: http://www.mysite.co.uk/Listing/listed.php?area=London&list=34
behind the scenes.

I tried this ReWrite in the htacess file in "Listing" folder but it dosen't work:

RewriteRule ^([a-z0-9]+)/([a-z0-9]+)$ /listed.php?area=$1&list=$2 [NC,L]

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

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

发布评论

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

评论(2

灰色世界里的红玫瑰 2024-10-28 21:07:41

尝试使用相对替换路径:

RewriteRule ^([a-z0-9]+)/([a-z0-9]+)$ listed.php?area=$1&list=$2 [NC,L]

也有可能不允许您使用除文档根目录之外的 .htaccess 文件。

Try a relative substitution path instead:

RewriteRule ^([a-z0-9]+)/([a-z0-9]+)$ listed.php?area=$1&list=$2 [NC,L]

It can also be possible that you’re not allowed to use .htaccess files besides in the document root directory.

软糯酥胸 2024-10-28 21:07:41

我认为你只需要从开头删除 ^ 并将目的地从 /listed.php 更改为 /Listing/listed.php

I think you only need to remove the ^ from the beginning and change the destination from /listed.php to /Listing/listed.php

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