gpt4 book ai didi

php - Mod Rewrite Htaccess for Fake sub Directories and directory

转载 作者:搜寻专家 更新时间:2023-10-31 21:32:45 25 4
gpt4 key购买 nike

我正在尝试创建假目录以将特定参数重定向到特定子目录,例如:来自:www.example.com/sys/signup 至:www.example.com/system/ext.php?t=signup

最佳答案

您需要将浏览器从带有查询字符串的 URL 重定向到没有查询字符串的 URL,然后您需要在内部将 URL 返回重写为带有查询字符串的 URL:

RewriteEngine On

# redirect the browser to clean URL
RewriteCond %{THE_REQUEST} \ /+system/ext\.php\?t=([^&]+)
RewriteRule ^ /sys/%1? [L,R]

# internally rewrite back to the query string
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^sys/(.*)$ /system/ext.php?t=$1 [L,QSA]

关于php - Mod Rewrite Htaccess for Fake sub Directories and directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27258104/

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