Url 用户友好,用变量隐藏原始地址

发布于 2024-12-19 03:07:05 字数 543 浏览 1 评论 0原文

这是我的简单 htaccess,它将所有调用重定向到 index.php 或 error.php

它工作正常,但我会从地址栏中隐藏原始地址。

#Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php [L]

ErrorDocument 404 /error.php

现在,如果我继续访问 www.mysite.com/news/last 我可以查看 www.mysite.com/index.php?p=news&section=last 但我希望地址栏中的地址没有改变。

提前致谢 ;)

this is my simple htaccess that redirect all calls to index.php or to error.php

It work fine but I would hide the original address from the address bar.

#Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php [L]

ErrorDocument 404 /error.php

Now if I go on www.mysite.com/news/last
I can view www.mysite.com/index.php?p=news§ion=last
but I wish it did not change in the address bar.

Thanks in advance ;)

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

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

发布评论

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

评论(1

花间憩 2024-12-26 03:07:05

由于您将所有调用重定向到 index.php 文件,我猜您必须在 php 中构建一个路由器(或尝试使用已经构建的路由器)。
然后你必须配置(通常通过 xml 或 php 配置文件)你想要替换原始查询字符串的路由。
例子:

index.php?p=news§ion=last

可以变成

/新闻/最后

或您喜欢的任何字符串。
如果您需要示例或帮助如何创建路由系统,请询问 =)

干杯

Since you are redirecting all the calls to the index.php file, i guess you have to build a router in php (or try to use one already built).
Then you have to configurate (via xml or php configuration file normally) the routes with wich you want to replace the original query strings.
example:

index.php?p=news§ion=last

can become

/news/last

or whatever string you prefer.
If you need examples or help how to create a routing system, just ask =)

Cheers

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