与 .htaccess 中的 3 个不同的 RewriteRules 冲突?

与 .htaccess 中的 3 个不同的 RewriteRules 冲突?

我在我的 .htaccess 文件中使用以下内容。

重定向有 3 种类型:

  1. 重定向到目录 /admin/index.php
  2. 重定向到特定的 .php 文件,例如 /about
  3. 从/John重定向到用户个人资料页面

在我的本地环境中,这 3 个都有效,但在服务器上,只有 1 和 3 有效。如果您能告诉我为什么“/about”类型的 URL 重定向对我不起作用,我将不胜感激。

非常感谢。

<IfModule mod_rewrite.c>

Options -Multiviews
Options +FollowSymLinks
RewriteEngine On

RewriteBase /

RewriteRule ^admin$ /admin/index.php [QSA,L]

RewriteRule ^about/?$ /about.php [NC,L]
RewriteRule ^es/?$ /index.php?lang=2 [NC,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([_A-Z0-9a-z-+\.]+)/?$ /public_profile.php?id=$1 [L]

</IfModule>

ErrorDocument 404 /404.php

相关内容