htaccess 重写 url

发布于 2024-11-01 14:53:42 字数 205 浏览 0 评论 0原文

我已经尝试使用 htaccess 将这个 url 重写一段时间了,

http://www.domain.com/folder/file.php?id=whatever

任何

http://www.domain.com/?id=whatever

帮助将不胜感激!

I've been tring for some time now with htaccess to rewrite this url

http://www.domain.com/folder/file.php?id=whatever

to

http://www.domain.com/?id=whatever

Any help would be much appreciated !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清眉祭 2024-11-08 14:53:43

必须类似于

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^$ folder/file.php [QSA]

查找确切的语法 urself ...还要注意 QSA 标志...实际上它将查询字符串从调用的 url 重定向到实际的 url ...而且您也无法匹配“?”之后的部分即正则表达式中的查询字符串...

Must be something like

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^$ folder/file.php [QSA]

look for the exact syntax urself ... also notice the QSA flag ... actually it redirects the query string from called url to actual url ... also you can not match the part after '?' ie the query string in the regex ...

赴月观长安 2024-11-08 14:53:42
RewriteEngine on
RewriteCond %{QUERY_STRING} ^id=([0-9]+)$
RewriteRule ^$ folder/file.php?id=$1 [QSA,L]
RewriteEngine on
RewriteCond %{QUERY_STRING} ^id=([0-9]+)$
RewriteRule ^$ folder/file.php?id=$1 [QSA,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文