View Single Post
  #2  
Old 08-20-2012, 10:44 AM
webizen webizen is offline
LiteSpeed Staff
 
Join Date: Oct 2010
Posts: 2,390
there is an extra space between "image)" and "\.php$". seems to be added by vbulletin. it needs to be removed.
%
Quote:
RewriteCond %{REQUEST_URI} !/(login|register|usercp|private|profile|cron|image) \.php$
It should be like below instead.
Quote:
RewriteCond %{REQUEST_URI} !/(login|register|usercp|private|profile|cron|image) \.php$

Last edited by webizen; 08-20-2012 at 10:47 AM..
Reply With Quote