mod_rewrite RewriteRule 的重定向循环错误

发布于 2024-12-13 06:26:36 字数 765 浏览 0 评论 0原文

我正在尝试 mod_rewrite:

localhost/edit.php?title=?&user_id=?

至:

localhost/edit/<?php echo $title.'/'.$user_id; ?>

循环

echo '<a href="localhost/edit/'.$title.'/'.$user_id.'">'.$title.'</a>';

因此,我可以将链接输出为我正在使用的

    Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
#Reroute through index.php
    RewriteRule ^([a-zA-Z0-9_]+) index.php?title=$1 [NC]

#this is RewriteRule for edit.php UPDATED:
    RewriteRule ^/?edit/([a-zA-Z0-9_]+)/([0-9]+)$ edit/index.php?title=$1&user_id=$2 [NC,L]


但是,我收到此错误:
该网页有重定向循环

I'm trying to mod_rewrite:

localhost/edit.php?title=?&user_id=?

To:

localhost/edit/<?php echo $title.'/'.$user_id; ?>

So, I can output links as a loop

echo '<a href="localhost/edit/'.$title.'/'.$user_id.'">'.$title.'</a>';

I'm using:

    Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
#Reroute through index.php
    RewriteRule ^([a-zA-Z0-9_]+) index.php?title=$1 [NC]

#this is RewriteRule for edit.php UPDATED:
    RewriteRule ^/?edit/([a-zA-Z0-9_]+)/([0-9]+)$ edit/index.php?title=$1&user_id=$2 [NC,L]

However, I get this error:
This webpage has a redirect loop

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

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

发布评论

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

评论(1

揽月 2024-12-20 06:26:36

试试这个

Options +FollowSymLinks
RewriteEngine On

# /edit/title_here/123 -> edit.php?title=title_here&user_id=123
RewriteRule ^edit/([A-Za-z0-9_]+)/([0-9]+)$ edit.php?title=$1&user_id=$2 [NC,L]

#Reroute through index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9_]+) index.php?title=$1 [NC,L]

Try this

Options +FollowSymLinks
RewriteEngine On

# /edit/title_here/123 -> edit.php?title=title_here&user_id=123
RewriteRule ^edit/([A-Za-z0-9_]+)/([0-9]+)$ edit.php?title=$1&user_id=$2 [NC,L]

#Reroute through index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9_]+) index.php?title=$1 [NC,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文