所以我遇到的问题是 .htaccess 复制了部分 url。本质上,我在root/forum/中安装了一个 IPB,并且 .htaccess(如下所示的代码)复制了论坛,因此 url 看起来像root/forum/forum/
这是 .htaccess 代码。
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /forum/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule \.(jpeg|jpg|gif|png)$ /forum/public/404.php [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /forum/index.php [L]
</IfModule>
从 .htaccess 中删除/forum会破坏该站点。是我的 .htaccess 代码还是别的什么?