【发布时间】:2021-12-23 14:18:17
【问题描述】:
我正在搜索 htaccess 中更改链接的规则。
目前链接如下:
localhost.com/forum/profile.php?id=1
而这就是我想要达到的效果:
localhost.com/forum/profile/1
我添加了以下规则:
Options -MultiViews
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/forum/profile\.php\?id=([0-9]+)\s [NC]
RewriteRule ^ /forum/profile/%1? [R=301,L]
问题是页面自动重定向到预期的链接,但是返回404错误
【问题讨论】:
-
“当前链接看起来像这样” - 澄清一下,如果您还没有更改 HTML 源代码中的实际链接,您仍然需要更改。
标签: .htaccess mod-rewrite url-rewriting