gpt4 book ai didi

.htaccess - 使用新网址迁移系统

转载 作者:行者123 更新时间:2023-12-04 14:49:30 25 4
gpt4 key购买 nike

我正在将系统从 MVC 切换到自定义代码系统。目前我们对 url 使用这种格式:

index.php?part=CAPACITOR&type=CERAMIC&model=0805&page=spec

我现在需要重写网址,以便对用户更友好
mysitecom/CAPACITOR/
mysitecom/CAPACITOR/CERAMIC/
mysitecom/CAPACITOR/CERAMIC/0805/spec.html#2

其中#1 和#2 是jquery 中加载的页面。开发人员使用旧方式使用/index.php/CAPACITOR/CERAMIC/0805/spec.html

因为我觉得在 url 中使用 index.php 不是很好,我该怎么做才能使它更好?

最佳答案

这是您需要使用的

RewriteEngine On
RewriteBase /

RewriteRule ^([a-z0-9\-_]+)/?$ index.php?part=$1&type=all&model=all&page=index [L,NC]
RewriteRule ^([a-z0-9\-_]+)/([a-z0-9\-_]+)/?$ index.php?part=$1&type=$2&model=all&page=index [L,NC]
RewriteRule ^([a-z0-9\-_]+)/([a-z0-9\-_]+)/([a-z0-9\-_]+)/?$ index.php?part=$1&type=$2&model=$3&page=index [L,NC]
RewriteRule ^([a-z0-9\-_]+)/([a-z0-9\-_]+)/([a-z0-9\-_]+)/([a-z0-9\-_\.]+)\.html$ index.php?part=$1&type=$2&model=$3&page=$4 [L,NC]

因此,当未提供文件夹(例如 CERAMIC)时,您可以添加一个标志来加载所有模型,同样的想法。这意味着如果只提供第一部分,则只会使用第一条规则。截止到 page.html默认情况下,您可以加载索引。

现在, a-z0-9\-_仅指任何字母、数字、破折号和下划线。您可以使用 ([^/]+)如果您愿意,这将允许您使用更多字符。

L 均值 last意思是如果规则匹配,它将停止。 NC 表示非大小写,所以 A = a 或 ABC = abc。

关于.htaccess - 使用新网址迁移系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9105970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com