htaccess ModRewrite

发布于 2024-12-13 13:12:03 字数 178 浏览 0 评论 0原文

如何使用 htaccess 和 modrewrite 进行重写

http://site.com/pages/123

http://site.com/pages.php?id=123

How to make rewrite from

http://site.com/pages/123

to

http://site.com/pages.php?id=123

with htaccess and modrewrite?

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

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

发布评论

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

评论(3

甜尕妞 2024-12-20 13:12:03

假设您想要重写 URL 而不是重定向,请在文档根目录中的.htaccess 文件中尝试此操作

RewriteEngine On
RewriteRule ^pages/(\d+) pages.php?id=$1 [QSA,L]

Assuming you want to rewrite the URL instead of redirecting, try this in a .htaccess file in your document root

RewriteEngine On
RewriteRule ^pages/(\d+) pages.php?id=$1 [QSA,L]
苏佲洛 2024-12-20 13:12:03

如果示例 123 只能是数字:

RewriteEngine on    
RewriteRule ^pages/([0-9]*)$ pages.php?id=$1

If the example 123 can just be numbers:

RewriteEngine on    
RewriteRule ^pages/([0-9]*)$ pages.php?id=$1
爱本泡沫多脆弱 2024-12-20 13:12:03

假设您想要重写 URL 而不是重定向,请在文档根目录中的 .htaccess 文件中尝试此操作

#Rewrite Rules
RewriteEngine on 
RewriteBase /  
RewriteRule    ^pages/(.*)/?$  pages.php?id=$1    [QSA,L]

Assuming you want to rewrite the URL instead of redirecting, try this in a .htaccess file in your document root

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