
01-18-2012, 11:13 AM
|
|
LiteSpeed Staff
|
|
Join Date: Oct 2010
Posts: 2,339
|
|
Make sure you use the below rules which was published earlier.
%
Quote:
RewriteEngine On
RewriteBase /directory/
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)[/]*$ index.php?func=$1&urlA=$2&urlB=$3&urlC=$4 [QSA,L]
#RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^([^/]+)/([^/]+)/([^/]+)[/]*$ index.php?func=$1&urlA=$2&urlB=$3 [QSA,L]
#RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^([^/]+)/([^/]+)[/]*$ index.php?func=$1&urlA=$2 [QSA,L]
#RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^([^/]+)[/]*$ index.php?func=$1 [QSA,L]
|
|