gpt4 book ai didi

.htaccess - 需要一种通用的方法来创建 SEO 友好的 URL

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

我在我的 .htaccess 文件中搜索并实现了许多正则表达式,但都没有成功。如何找到使我的 URL SEO 友好的通用方法?

目前这是在我的 .htaccess 文件中:

   RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]

我需要做的是像这样更改一个 URL:

http://localhost/abc/index.php?page=boats_for_sale

为此:

http://localhost/abc/boats_for_sale

同样,我想隐藏我的 URL 中的所有查询字符串。

我将如何实现?

最佳答案

有了类似的东西,它就可以工作了:

URL重写模块激活

# Avoids problems with mod_rewrite
Options +FollowSymlinks
# Activate rewriting module
RewriteEngine on
# Set base URL directory rewrites
RewriteBase /

重写url参数

RewriteRule ^abc/([a-zA-Z0-9_-]+)$ abc/index.php?page=$1

请阅读重写模组圣经: http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html

关于.htaccess - 需要一种通用的方法来创建 SEO 友好的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12291040/

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