View Single Post
  #1  
Old 12-30-2012, 08:11 PM
techieanalyst techieanalyst is offline
New Member
 
Join Date: Dec 2012
Posts: 7
Default IPBoard 3.4.1 Mod-Rewrite

So IPBoard is telling me to put this in:

If yes, add a file called .htaccess with the following contents.
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule \.(jpeg|jpg|gif|png)$ /public/404.php [NC,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Do I just drop this in .htaccess under the html root or what and is the code here compatible with litespeed?
Reply With Quote