.htaccess mod_rewrite 思维区块

发布于 2024-12-04 14:15:55 字数 312 浏览 0 评论 0原文

我在使用 ModRewrite 时遇到了关于如何适当隐藏查询字符串参数的问题。基本上是这样的..

from:

http://localhost/index.php?page=news&=request=somepage&id=100&sort=asc

to:

http://localhost/news/somepage/id/asc

我尝试用它做不同的变化,但没有成功。现在,我只能从 url 中显示查询参数,这是我试图避免的。

I've been having trouble with the ModRewrite on how to appropriately hide query string parameters. Basically something like this..

from:

http://localhost/index.php?page=news&=request=somepage&id=100&sort=asc

to:

http://localhost/news/somepage/id/asc

I've attempted to do different variations with it but to no success. For now I make do with revealing query paramaters from the url which is what I'm trying to avoid.

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

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

发布评论

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

评论(1

北恋 2024-12-11 14:15:55

类似的内容

.htaccess 文件中写入

RewriteEngine on
RewriteBase /
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?page=$1&=request=$2&id=$3&sort=$4 [L]

:也是为了更好地使用图像、样式表、脚本等。我建议添加 位于网站所有页面的 标记中。

Something like this

in .htaccess file write:

RewriteEngine on
RewriteBase /
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?page=$1&=request=$2&id=$3&sort=$4 [L]

Also for better using with images, stylesheets, scripts etc. I recommend to add <base href="index.php"> in <head> tag at all pages in your site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文