View Single Post
  #2  
Old 01-29-2013, 10:09 AM
webizen webizen is offline
LiteSpeed Staff
 
Join Date: Oct 2010
Posts: 2,339
Quote:
Originally Posted by techieanalyst View Post
Im running IPBoards 3.4.2 and I need this problem solved and they've already pretty much pointed at the webserver

<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>

All sites come back as 404, what should I set on my listener/server side in the GUI to make this work
enable rewrite logging (Add 'RewriteLogLevel 9' in vhost section of httpd.conf) and grep 'REWRITE' entries from /usr/local/apache/logs/error_log to see what is going on.
Reply With Quote