Hello,
I'm new in litespeed and still in trial mode to make sure it's working properly with my sites.
I have problem with rewriterule.
this part is not working in litespeed if the q variable passing string with space but it work perfectly fine in apache.
Probably it may have some other solution but I can't think of good one.
thank you.
I'm new in litespeed and still in trial mode to make sure it's working properly with my sites.
I have problem with rewriterule.
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^(.*)/(.*)/$ index.php?view=$2 [L]
RewriteRule ^category/(.*).html$ index.php?cat=$1&p=$2 [L]
RewriteRule ^category/(.*)-page-(.*)$ index.php?cat=$1&p=$2 [L]
RewriteRule ^(.*)-(.*).html$ index.php?w=$2
RewriteRule ^page-(.*)$ index.php?p=$1
RewriteRule ^(.*)/(.*).html$ index.php?q=$2 [L]
RewriteRule ^(.*)/(.*)-page-(.*).html$ index.php?q=$2&p=$3 [L]
Code:
RewriteRule ^(.*)/(.*).html$ index.php?q=$2 [L]
thank you.