gpt4 book ai didi

.htaccess 和 seo 友好搜索查询字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:32:54 25 4
gpt4 key购买 nike

我是 .htaccess 的新手。我想知道如何为搜索字符串和选定的过滤器创建一个复杂的 seo 友好 url。

我目前正在使用以下代码进行搜索。

ReWriteRule ^search/(.*)/(.*)   ?module=search&q=$1&page=$2 [L]
ReWriteRule ^search/(.*) ?module=search&q=$1 [L]

当谈到添加过滤器选项时,它开始成为一场噩梦。考虑以下过滤器;

缩写:无、姓名、日期 + ASC、DESC。类别: 无,类别 ID。搜索范围:全部、标题、消息、作者。

选择所有过滤器后,我们的地址将是;

原始:www.site.com/?module=search&q=test&shortBy=name_ASC&catID=1&searchIn=title

搜索引擎优化友好: www.site.com/search/test/name_ASC/1/title/

现在这一点都不复杂,但我只是想了解事情是如何运作的。我是否必须将所有过滤器应用于 URL,即使它们未被选中?这会无缘无故地创建更长的 URL,所以我相信必须有另一种方法来解决这个问题。

如何在 .htaccess 中定义规则?在我的示例中,我在我的 .htaccess 文件中编写了至少 2 条规则(第 2 条用于分页)。

我现在所能想到的就是做这样的事情 ^search/(.*)/(.*) ?module=search&$1=$2 [L] 但这看起来并不优雅.

如果你能帮我解决这个问题,我会很高兴。如果您也能与像我一样的 .htaccess 新手分享您的一些经验,我将不胜感激。

最佳答案

将下面的规则放在您的 .htaccess 文件的顶部(在您站点的根目录中),然后选择下面的选项之一,根据您的需要修改它,然后放在您的 .htaccess 文件中。

第一个选项会匹配最多的 url,不推荐使用。第二个只会匹配 5 个目录的 url,但需要所有参数,所以我推荐第三个。

虽然下面的模式可能看起来不优雅,但它是The Definitive Guide to Apache mod_rewrite中的特色解决方案。

有关更多详细信息,请查看 apache docs或一些 examples或者这个 post

在所有情况下,我假设请求转到 index.php,因此您应该修改它以匹配实际页面。

这个部分应该放在所有 3 个选项的 .htaccess 文件的顶部

#for all 3 options these 2 lines should be at the top of the .htaccess file
RewriteEngine On
RewriteBase /

选项 1

#1 if all parameters are optional, and you page (index.php) can handle blank parameters use
RewriteRule ^([^/]*)/?([^/]*)/?([^/]*)/?([^/]*)/?([^/]*)/$ index.php?module=$1&q=$2&shortBy=$3&catID=$4&searchIn=$5 [L]

选项 2

#2 if all parameters are required use
RewriteRule ^([^/]+)/([^/]+)/([^/]+)?([^/]+)/([^/]+)/$ index.php?module=$1&q=$2&shortBy=$3&catID=$4&searchIn=$5 [L]

选项 3

#3 if the module is required and other parameters are optional, then this is better
RewriteCond %{REQUEST_URI} ^/(search|produce_detail|other_modules_here)/
RewriteRule ^([^/]*)/?([^/]*)/?([^/]*)/?([^/]*)/$ index.php?module=%1&q=$1&shortBy=$2&catID=$3&searchIn=$4 [L]

关于.htaccess 和 seo 友好搜索查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8256296/

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