.htaccess ?id=__ 需要修改 htaccess 以允许任何 id 号

发布于 2024-12-11 05:47:21 字数 595 浏览 0 评论 0原文

我有一个动态创建的网址: http://www.mysite.com/?id=1&title=Home (但实际上 id 可以是 999 以内的任何数字)

到目前为止,我有这个在我的 .htaccess 中:

Options +FollowSymlinks

RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^_]*)$ /folder/?id=1&title=$1 [L]'

这会将 URL 缩短为 www.mysite.com/folder/title。但是,我不知道如何修改 RewriteRule (或添加 RewriteCond)以允许 ?id=__ 为任意数字最多三个整数,即 1 到 999。这些页面上显示的信息与作为 MySQL 主键的 ID 号无关,并且每个页面上的信息都必须完整,以便正确提取信息。请告诉我这是否可行。

I have a dynamically created url:
http://www.mysite.com/?id=1&title=Home (but really the id can be any number up to 999)

So far I have this in my .htaccess:

Options +FollowSymlinks

RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^_]*)$ /folder/?id=1&title=$1 [L]'

This shortens the URL to www.mysite.com/folder/title. However, I do not know how to modify the RewriteRule (or add a RewriteCond) to allow for the ?id=__ to be any number up to three integers i.e. 1 to 999. There is information displayed on these pages that goes off of the id number as the primary key from the MySQL and it needs to be intact on each page so that the information pulls correctly. Please let me know if this is possible or not.

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

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

发布评论

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

评论(1

執念 2024-12-18 05:47:21

你的问题似乎不完整。但我有简单的解决方案。

RewriteBase /

RewriteRule ^(.*)folder/(.*)$ /folder/?title=$2&%{QUERY_STRING} [L]

如果您打开此网址 www.mysite.com/folder/title123?id=5 那么您将在 $_GET['title'] 中获得 title123 ,在 $_GET['id' 中获得 5 ]

your question seems incomplete. But I have simple solution.

RewriteBase /

RewriteRule ^(.*)folder/(.*)$ /folder/?title=$2&%{QUERY_STRING} [L]

if you open this URL www.mysite.com/folder/title123?id=5 then you will get title123 in $_GET['title'] and 5 in $_GET['id']

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