gpt4 book ai didi

.htaccess - htaccess 重写 url - 将文件夹重定向到 php 文件

转载 作者:行者123 更新时间:2023-12-02 23:43:28 28 4
gpt4 key购买 nike

我想将子目录重定向或重写为 PHP 文件

如:

http://www.domain.org/contact

对此:

http://www.domain.org/index.php?sub=contact

我真的很希望PHP可以将domain.org/contact读取为domain.org/index.php?sub=contact,但如果它只是以这种方式重定向,我会很高兴!我已经使用 .htaccess 搜索了许多解决方案,但它们不清楚,或者我无法让它们专门用于我想要做的事情

谢谢

最佳答案

试试这个

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php?sub=$1

关于.htaccess - htaccess 重写 url - 将文件夹重定向到 php 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9407004/

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