gpt4 book ai didi

php - 使用 .htaccess 创建 SEF url

转载 作者:可可西里 更新时间:2023-11-01 00:31:18 25 4
gpt4 key购买 nike

如何更改以下格式的 url

  example.com/page/1

example.com/index.php?page=1

?

当我进入

example.com/page/1

它应该重定向到

  example.com/index.php?page=1

我需要对我的 .htaccess 文件做哪些更改?

文件夹结构如下

   -Public_html
.htaccess
index.php

谢谢。

最佳答案

在您的 public_html/.htaccess 文件中使用它

   RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^page/([0-9])/?$ /index.php?page=$1 [QSA,NC,L]

RewriteCond 检查请求的文件名或目录是否已经存在,RewriteRule 将被跳过。

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

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