
09-29-2011, 05:26 PM
|
|
LiteSpeed Staff
|
|
Join Date: Oct 2010
Posts: 2,390
|
|
Try the modified rules below (should be placed in LSWS vhost Rwrite):
Quote:
RewriteRule ^/([^/.]+)-article/?$ /index.php?action=article&author=$1 [L]
RewriteRule ^/([^/.]+)/([^/.]+)-article/?$ /index.php?action=article&author=$1&article=$2 [L]
|
Use the followings (leading "/" removed) for .htaccess rerwite:
Quote:
RewriteRule ^([^/.]+)-article/?$ /index.php?action=article&author=$1 [L]
RewriteRule ^([^/.]+)/([^/.]+)-article/?$ /index.php?action=article&author=$1&article=$2 [L]
|
|