Status
Not open for further replies.

bdsur

Active Member
295
2009
13
0
I am running my blog on vps server with kloxo panel.My problem is custom link on my blog its working when i have set apache on my server when i am swithing it lighttpd mode my custom link (/%postname%) not working 404 not found.I hopefully its problem with .HTACCESS file.Anybody plz give me the .HTACCESS code for lighttpd mode.
 
2 comments
anyone convert it to lighttpd format

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
 
Status
Not open for further replies.
Back
Top