gpt4 book ai didi

regex - 具有单个参数的 htaccess 重写规则

转载 作者:行者123 更新时间:2023-12-01 11:26:59 26 4
gpt4 key购买 nike

当用户输入 url 时

http://example.com/app/abcd123/

我想显示他的主页

http://example.com/app/index.php?param=abcd123

无需在浏览器中更改 URL。

我把 .htaccess 文件和代码放在 app 文件夹里

RewriteEngine on
RewriteCond %{REQUEST_URI} ^/index.php [NC]
RewriteCond %{QUERY_STRING} ^param=(.*)
RewriteRule (.*) http://example.com/app/%1? [R=301,L]

最佳答案

您可以在 /app/.htaccess 中使用此代码:

RewriteEngine on
RewriteBase /app/

# external redirect from actual URL to pretty one
RewriteCond %{THE_REQUEST} /index\.php\?param=([^\s&]+) [NC]
RewriteRule ^ %1? [R=302,L,NE]

# internal forward from pretty URL to actual one
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+?)/?$ index.php?param=$1 [L,QSA]

关于regex - 具有单个参数的 htaccess 重写规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36543182/

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