Thread: rewrite problem
View Single Post
  #1  
Old 04-09-2005, 05:00 PM
illidan illidan is offline
New Member
 
Join Date: Dec 2004
Posts: 8
Default rewrite problem

what is the problem with this rewrite it works on apache but not litespeed it takes 3 hours for me but nothing changed, It is a bug I think. All I want is to redirect mising directories to index.php
Quote:
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^(.+)$ /index.php?fo=$1 [L]
Reply With Quote