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