Lighttpd sunucusunda WordPress permalink ayarları

VPS’inizde çok daha az bellek isteyen hafif bir sunucu istediniz ve Apache’den, Lighttpd’e geçtiniz. Fakat bir sorun var. Lighttpd, .htaccess dosyasını desteklemiyor. Peki bu durumda permalink ayarları için ne yapmalısınız?

Lighttpd’nin mod_rewrite modülünü, lighttpd.conf dosyasında aktif hale getirdikten sonra (muhtemelen zaten aktiftir) şu satırları lighttpd.conf dosyasının tercihen sonuna eklemelisiniz.

server.modules += ( "mod_rewrite" )

   url.rewrite-once = (
    "^/(.*)?/?files/$" => "index.php",
    "^/(.*)?/?files/(.*)" => "wp-content/blogs.php?file=$2",
    "^/(wp-.*)$" => "$1",
    "^/([_0-9a-zA-Z-]+/)?(wp-.*)" => "$2",
    "^/([_0-9a-zA-Z-]+/)?(.*\.php)$" => "$2",
    "(\?.*)$" => "index.php$1",
    "." => "index.php"
   )

lighttpd.conf dosyası sunucuda /etc/lighttpd/ dizininde yer alır.

http://codex.wordpress.org/Installing_WPMU

Yazar: Yönetici

WordPress Türkiye yöneticisi

Bir cevap yazın

E-posta hesabınız yayımlanmayacak.