.htaccess 查询字符串到文件夹格式

发布于 2024-12-06 15:39:34 字数 320 浏览 1 评论 0原文

我有一个带有查询字符串的查询 URL,我想将其转换为文件夹结构化 URL。

例如:

http://localhost/index.php?page=about-us
http://localhost/index.php?page=contact-us

我如何将其隐藏为

http://localhost/index/page/about-us
http://localhost/page/about-us

我知道这可以通过 .htaccess 来完成。我只是不知道从哪里开始

I have a query URL with query string and I want to convert it to folder structured URL.

For example:

http://localhost/index.php?page=about-us
http://localhost/index.php?page=contact-us

how would I covert it to

http://localhost/index/page/about-us
http://localhost/page/about-us

I know this can be done with .htaccess. I just don't know where to start

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

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

发布评论

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

评论(1

抠脚大汉 2024-12-13 15:39:34

你需要一些类似的东西......

Options +FollowSymLinks   
RewriteEngine On   

RewriteCond %{SCRIPT_FILENAME} !-d   
RewriteCond %{SCRIPT_FILENAME} !-f   

RewriteRule ^page/([-a-z-0-9]+)*/$ ./index.php?page=$1
RewriteRule ^index/page/([-a-z-0-9]+)*/$ ./index.php?page=$1

You would need something along the lines of...

Options +FollowSymLinks   
RewriteEngine On   

RewriteCond %{SCRIPT_FILENAME} !-d   
RewriteCond %{SCRIPT_FILENAME} !-f   

RewriteRule ^page/([-a-z-0-9]+)*/$ ./index.php?page=$1
RewriteRule ^index/page/([-a-z-0-9]+)*/$ ./index.php?page=$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文