htaccess RewriteRule 问题

发布于 2024-10-24 19:34:16 字数 316 浏览 4 评论 0原文

我有一个 PHP 页面,在类别和页面中读取 $_GET 变量。

然后,我将 .htaccess 将 url.com/categroy/page 转发到 index.php 文件,以便它完成工作。

但是我无法让 htaccess 规则发挥作用

RewriteEngine On
RewriteRule ^/([^/]+)/(.[^/])  /index.php?category=$1&page=$2
RewriteRule ^/([^/])  /index.php?page=$1

关于我缺少什么有什么想法吗?

I have a PHP page reading $_GET variables in as category and page.

I then have the .htaccess forwarding url.com/categroy/page to the index.php file for it to do the work.

I cannot however get the htaccess rules working

RewriteEngine On
RewriteRule ^/([^/]+)/(.[^/])  /index.php?category=$1&page=$2
RewriteRule ^/([^/])  /index.php?page=$1

Any ideas as to what i am missing?

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

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

发布评论

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

评论(1

一绘本一梦想 2024-10-31 19:34:16

您的规则缺少结尾分隔符 $。并且 . 在该位置放错了。另外,您还需要第二个 [] 字符类的 + 量词:

RewriteRule ^([^/]+)/([^/]+)$  index.php?category=$1&page=$2   [L]
RewriteRule ^([^/]+)$  index.php?page=$1    [L]

我对此不确定,但我还删除了前导 /削减。当您将 .htaccess 放在根文件夹中时,它应该是隐式的。

此外,您可能需要典型的 RewriteCond 来排除任何真实的文件名被重写。将其放在每个 RewriteRule 之前:

RewriteCond  %{REQUEST_FILENAME}  !-f

Your rules lack the endling delimiter $. And the . is misplaced at that position. Also you need a + quantifier for the second [] character class:

RewriteRule ^([^/]+)/([^/]+)$  index.php?category=$1&page=$2   [L]
RewriteRule ^([^/]+)$  index.php?page=$1    [L]

I'm not sure about this, but I also removed the leading / slash. It should be implicit when you place your .htaccess in the root folder.

Additionally you probably will need the typical RewriteCond to exclude any real filenames from getting rewritten. Place this before each RewriteRule:

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