更改htaccess以重定向到子文件夹中的index.php 时间:2021-12-07 作者:HHGK 如何更改WordPress根文件夹.htaccess 文件将具有特定子文件夹的URL重定向到其自己的子文件夹index.php 并将路径数据作为URL变量提供给index.php?https://example.com/subfolder/img.png 重定向到:https://example.com/subfolder/index.php?path=img.png 所有其他重定向都应该像WordPress所期望的那样工作。 1 个回复 SO网友:MrWhite 在根的顶部尝试以下操作.htaccess 文件,位于现有WordPress指令之前# BEGIN WordPress 注释标记):RewriteCond $2 !^(index\\.php)?$ RewriteRule ^(subfolder)/(.+) /$1/index.php?path=$2 [L] TheRewriteCond 指令是为了确保它不会试图重写index.php 自身(或目录)。请求/subfolder/ 仅由以下人员提供/subfolder/index.php 没有path URL参数(按mod\\u dir)。否则,对该子文件夹的所有其他请求(无论是映射到文件、目录还是什么都没有)都会传递给/subfolder/index.php 在查询字符串中。 文章导航