So the issue I am having is with .htaccess duplicating a portion of the url. Essentially, I have an IPB installed in root/forum/ and the .htaccess (code shown below) duplicates forum so that the url looks like root/forum/forum/
Here is the .htaccess code.
<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>
Removing /forum from the .htaccess breaks the site. Is it my .htaccess code or is this something else?