gpt4 book ai didi

php - 使用 htaccess 创建 SEO 友好的 url

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

我正在尝试重写网站的 url,我应该提到 index.php 现在的工作方式是获取 p(页面)参数并包含适当的文件。

所以请求一个页面是这样的:

www.domain.com/index.php?p=home
www.domain.com/index.php?p=search
www.domain.com/index.php?p=profile
www.domain.com/index.php?p=contact

我找到了如何为此创建重写规则:

RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?p=$1

所以现在 www.domain.com/home 会给我主页

但我还需要为此提供一个友好的 url

www.domain.com/index.php?p=profile&id=20

to

www.domain.com/profile/20/profile-friendly-name

or better

www.domain.com/profile/profile-friendly-name

*profile-friendly-name 是指公司名称

要求:

  1. 为所有页面设置友好的 URL,例如/home,/contact

  2. 为个人资料页面提供一个特别友好的 URLurl 中的个人资料名称

我的问题:

  1. 我如何向具有现有 url 格式 (index.php?p=profile&id=20) 的 url 添加配置文件友好名称?

  2. 我能不能像我的名字一样只有一个唯一的名字(没有 id)例子?

  3. 如果我设法做到这一点,我是否必须更改所有现有的 url在站点内(链接、图像、文件的 URL)给友好的格式?

  4. 我注意到在应用第一个 RewriteRule 之后一些 css不包括样式表和 js。怎么了?

最佳答案

RewriteRule ^profile/([0-9]+)/([A-Za-z0-9-]+)/?$ index.php?p=profile&id=$1

适用于:

www.domain.com/index.php?p=profile&id=20

to

www.domain.com/profile/20/profile-friendly-name

关于php - 使用 htaccess 创建 SEO 友好的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26285463/

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