Nowe posty

Autor Wątek: [lighttpd] zwraca tylko index.php  (Przeczytany 8277 razy)

herszt

  • Gość
[lighttpd] zwraca tylko index.php
« dnia: 2011-03-23, 11:34:36 »
Witam!

Mam zainstalowanego lighttpd. Chodzi na porcie 3008. Ale niestety cokolwiek bym nie wpisał w adresie, to zawsze zwraca index.php. Jakieś sugestie? Podejrzewam, że może coś po prostu pominąłem.

z góry dzięki
pozdrawiam
herszt

ZipoKing

  • Gość
[lighttpd] zwraca tylko index.php
« Odpowiedź #1 dnia: 2011-03-23, 12:41:33 »
A jak wygląda u ciebie konfiguracja serwera? Nikt ci raczej nie pomoże jeżeli nie podasz bardziej szczegółowych informacji

herszt

  • Gość
[lighttpd] zwraca tylko index.php
« Odpowiedź #2 dnia: 2011-03-23, 13:25:44 »
Plik konfiguracyjny:

Cytuj
## modules to load
# at least mod_access and mod_accesslog should be loaded
# all other module should only be loaded if really neccesary
# - saves some time
# - saves memory
server.modules              = (
                                "mod_rewrite",
#                               "mod_redirect",
#                               "mod_alias",
#                               "mod_access",
#                               "mod_cml",
#                               "mod_trigger_b4_dl",
#                               "mod_auth",
#                               "mod_status",
#                               "mod_setenv",
#                               "mod_fastcgi",
#                               "mod_proxy",
#                               "mod_simple_vhost",
#                               "mod_evhost",
#                               "mod_userdir",
                                "mod_cgi",
#                               "mod_compress",
#                               "mod_ssi",
#                               "mod_usertrack",
#                               "mod_expire",
#                               "mod_secdownload",
#                               "mod_rrdtool",
#            "mod_webdav",
                                "mod_accesslog" )

## a static document-root, for virtual-hosting take look at the
## server.virtual-* options
server.document-root        = "/web/page/webroot"

## where to send error-messages to
server.errorlog             = "/logs/lighttpd.error.log"

# files to check for if .../ is requested
index-file.names            = ( "index.php", "index.html",
                                "index.htm", "default.htm" )

## set the event-handler (read the performance section in the manual)
# server.event-handler = "freebsd-kqueue" # needed on OS X

# mimetype mapping
mimetype.assign             = (
  ".pdf"          =>      "application/pdf",
  ".sig"          =>      "application/pgp-signature",
  ".spl"          =>      "application/futuresplash",
  ".class"        =>      "application/octet-stream",
  ".ps"           =>      "application/postscript",
  ".torrent"      =>      "application/x-bittorrent",
  ".dvi"          =>      "application/x-dvi",
  ".gz"           =>      "application/x-gzip",
  ".pac"          =>      "application/x-ns-proxy-autoconfig",
  ".swf"          =>      "application/x-shockwave-flash",
  ".tar.gz"       =>      "application/x-tgz",
  ".tgz"          =>      "application/x-tgz",
  ".tar"          =>      "application/x-tar",
  ".zip"          =>      "application/zip",
  ".mp3"          =>      "audio/mpeg",
  ".m3u"          =>      "audio/x-mpegurl",
  ".wma"          =>      "audio/x-ms-wma",
  ".wax"          =>      "audio/x-ms-wax",
  ".ogg"          =>      "application/ogg",
  ".wav"          =>      "audio/x-wav",
  ".gif"          =>      "image/gif",
  ".jpg"          =>      "image/jpeg",
  ".jpeg"         =>      "image/jpeg",
  ".png"          =>      "image/png",
  ".xbm"          =>      "image/x-xbitmap",
  ".xpm"          =>      "image/x-xpixmap",
  ".xwd"          =>      "image/x-xwindowdump",
  ".css"          =>      "text/css",
  ".html"         =>      "text/html",
  ".htm"          =>      "text/html",
  ".js"           =>      "text/javascript",
  ".asc"          =>      "text/plain",
  ".c"            =>      "text/plain",
  ".cpp"          =>      "text/plain",
  ".log"          =>      "text/plain",
  ".conf"         =>      "text/plain",
  ".text"         =>      "text/plain",
  ".txt"          =>      "text/plain",
  ".dtd"          =>      "text/xml",
  ".xml"          =>      "text/xml",
  ".mpeg"         =>      "video/mpeg",
  ".mpg"          =>      "video/mpeg",
  ".mov"          =>      "video/quicktime",
  ".qt"           =>      "video/quicktime",
  ".avi"          =>      "video/x-msvideo",
  ".asf"          =>      "video/x-ms-asf",
  ".asx"          =>      "video/x-ms-asf",
  ".wmv"          =>      "video/x-ms-wmv",
  ".bz2"          =>      "application/x-bzip",
  ".tbz"          =>      "application/x-bzip-compressed-tar",
  ".tar.bz2"      =>      "application/x-bzip-compressed-tar"
 )

# Use the "Content-Type" extended attribute to obtain mime type if possible
#mimetype.use-xattr        = "enable"


## send a different Server: header
## be nice and keep it at lighttpd
# server.tag                 = "lighttpd"

#### accesslog module
accesslog.filename          = "/logs/lighttpd.access.log"
debug.log-request-handling = "enable"

## deny access the file-extensions
#
# ~    is for backupfiles from vi, emacs, joe, ...
# .inc is often used for code includes which should in general not be part
#      of the document-root
#url.access-deny             = ( "~", ".inc" )

$HTTP["url"] =~ "\\.pdf$" {
  server.range-requests = "disable"
}

##
# which extensions should not be handle via static-file transfer
#
# .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
I dalej większość jest już wykomentowana (został tylko numer portu i obsługa php).

Oraz .htaccess:
Cytuj

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
Próbowałem tu wykomentować ostatnią linijkę, ale bez rezultatu.

z góry dzięki
pozdrawiam
herszt

Offline vanhelzing

  • Users
  • Prawie jak Guru
  • ****
  • Wiadomości: 314
    • Zobacz profil
[lighttpd] zwraca tylko index.php
« Odpowiedź #3 dnia: 2011-03-23, 14:30:18 »
Odwołujesz się do istniejącego pliku/katalogu? Rozumiem, że wiesz jak działają reguły dla mod_rewrite?

ZipoKing

  • Gość
[lighttpd] zwraca tylko index.php
« Odpowiedź #4 dnia: 2011-03-23, 19:37:39 »
1. Gdzie masz skonfigurowaną obsługę FastCGI dla plików .php (nie widzę tego w konfiguracji)? - Lighthttpd to nie apache i nie ma dedykowanego mod_php
2. .htaccess to też raczej Apache - URL przepisuje się trochę inaczej (looknij np. tutaj: http://forum.lighttpd.net/topic/504 )

herszt

  • Gość
[lighttpd] zwraca tylko index.php
« Odpowiedź #5 dnia: 2011-03-30, 16:32:35 »
Wydaje mi się, że problemem tu jest jeden z modów lighttpd:

url.rewrite-once = (
     "^/phpMyAdmin/(.*)$" => "/phpMyAdmin/$1",
    "^/(css|images|files|js)/(.*)$" => "/$1/$2",
    "^/(robots\\.txt|favicon\\.ico)$" => "/$1",
    "^/cfg/([^?]*)(\\?(.*))?$" => "/cfg/main/config.php?url=$1&$3"
)
Ostatnia linijka wyglądała inaczej. Zmieniłem ją nieco intuicyjnie, ale jeszcze to nie to co chciałem osiągnąć. Mam tu problem z rozszyfrowaniem tej ostatniej reguły - nieco skomplikowany zapis. Byłbym wdzięczny za wyjaśnienie.

z góry dzięki
pozdrawiam
herszt

ZipoKing

  • Gość
[lighttpd] zwraca tylko index.php
« Odpowiedź #6 dnia: 2011-03-30, 20:06:11 »
Ostatnia reguła działa na takiej zasadzie, że jak podasz np. /cfg/xyz?abc=def to zostanie to przemielone na /cfg/main/config.php?url=xyz&abc=def

herszt

  • Gość
[lighttpd] zwraca tylko index.php
« Odpowiedź #7 dnia: 2011-04-06, 16:52:18 »
Czyli, jeśli pojawi się np. /cfg/css to i tak zostanie przekierowane do config.php? Problem teraz polega na tym, że w katalogu cfg/ mam podkatalogi css/ images/ files/ js/ i w ogóle mi z nich nie pobiera niczego. Domyślam się, że problem tkwi w tym, że serwer to przekierowuje do cfg.php. Czy mogę jakoś w ostatniej regule wykluczyć te podkatalogi, aby poprawnie mi pobierało?

z góry dzięki
pozdrawiam
herszt