T
Hi,
I'm just install complate open litespeed and install successful wordpress and work ok with rewite rule:
But when i use my code with rule:
It's say not found and not rewrite URL for me
Some one help me about this ?
Thanks
===========================================
Fixed, just add slash at beginning like :
Thanks Fearless
I'm just install complate open litespeed and install successful wordpress and work ok with rewite rule:
Code:
RewriteBase /wordpress/
RewriteRule ^/index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
Code:
RewriteRule ^apps/(.*)/id(.*).html$ modules/detail.php?id=$2
RewriteRule ^captcha.jpg$ captcha/CaptchaSecurityImages.php
RewriteRule ^search/([^/]*).html$ modules/search.php?key=$1 [L,QSA]
RewriteRule ^artist/(.*)/id(.*).html$ modules/artist.php?id=$2
RewriteRule ^genre/(.*)/id(.*).html$ modules/genre.php?id=$2
RewriteRule ^request.html$ modules/request.php
Some one help me about this ?
Thanks
===========================================
Fixed, just add slash at beginning like :
Code:
RewriteRule ^/apps/(.*)/id(.*).html$ modules/detail.php?id=$2
RewriteRule ^/captcha.jpg$ captcha/CaptchaSecurityImages.php
RewriteRule ^/search/([^/]*).html$ modules/search.php?key=$1
RewriteRule ^/artist/(.*)/id(.*).html$ modules/artist.php?id=$2
RewriteRule ^/genre/(.*)/id(.*).html$ modules/genre.php?id=$2
RewriteRule ^/request.html$ modules/request.php
Last edited by a moderator: