.htaccess 替换(重写)PHP URL 中的 $_GET 变量
我有一个类似于 example.com/index.php?p=test
的 URL,以便 PHP 将使用 $_GET['p']
。 URL 已经可以简化为 example.com?p=test
;但是,我希望在 .htaccess
中将其简化为 site.com/test
。我该怎么做呢?
I have a URL that will be something like example.com/index.php?p=test
so that the PHP will load the test variable using $_GET['p']
. The URL can already be simplified to example.com?p=test
; however, I wish to simplify this in my .htaccess
to site.com/test
. How would i go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下内容放入
.htaccess
文件中:然后您可以从
example.com/whatever
访问whatever
,如下所示:Place the following in your
.htaccess
file:You can then access
whatever
fromexample.com/whatever
like the following: