0

所以我遇到的问题是 .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 代码还是别的什么?

4

1 回答 1

0

在这里,您有我的 .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>

在这里一切正常。我在“论坛”文件夹中也有一个论坛...您是否在 adminCP 中激活了 .htaccess mod_rewrite 设置?

您通过此网址 ( http://site.com/forum ) 或此 ( http://forum.site.com ) 访问您的论坛?我使用第一个,在这里工作得很好......

于 2013-10-13T18:50:13.247 回答