Url 用户友好,用变量隐藏原始地址
这是我的简单 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§ion=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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您将所有调用重定向到 index.php 文件,我猜您必须在 php 中构建一个路由器(或尝试使用已经构建的路由器)。
然后你必须配置(通常通过 xml 或 php 配置文件)你想要替换原始查询字符串的路由。
例子:
可以变成
或您喜欢的任何字符串。
如果您需要示例或帮助如何创建路由系统,请询问 =)
干杯
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:
can become
or whatever string you prefer.
If you need examples or help how to create a routing system, just ask =)
Cheers