Добро пожаловать, Гость!
Mod_rewrite + Lighttpd
Помощь мастерам | Mod_rewrite + Lighttpd
viper228 :
Всем привет столкнулся такой проблеммой на денвере нужно включить mod_rewrite,денвер у меня ореентируется на Lighttpd, пробовал включить mod_rewrite прописав в конфигурации Lighttpd данный код :
url.rewrite-once = (
"^/([^.]+)$" => "/index.php?action=$1"
)
но mod_rewrite не включилися,кто знает как включить mod_rewrite помогите пожалуйста,если что вот конфигурация моего Lighttpd
#
# AlfanLA --- Ссылка
#
server.document-root = "/mnt/sdcard/pws/www/"
dir-listing.activate = "enable"
server.errorlog = "/mnt/sdcard/pws/logs/lighttpd.log"
server.port = 8080
server.tag = "lighttpd/1.4.32 - Palapa Web Server (http://alfanla.com)"
index-file.names = ( "index.php", "index.html", "index.htm" )
fastcgi.map-extensions = ( ".php3" => ".php", ".php4" => ".php", ".php5" => ".php" )
fastcgi.server = (
".php" => ((
"host" => "127.0.0.1",
"port" => 9998,
"bin-path" => "/data/data/com.alfanla.android.pws/bin/php",
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "0",
"PHP_FCGI_MAX_REQUESTS" => "10000",
"TMPDIR" => "/data/data/com.alfanla.android.pws/tmp/"
),
"min-procs" => 1,
"max-procs" => 1,
"idle-timeout" => 20
))
)
auth.debug = 2
auth.backend = "plain"
auth.backend.plain.userfile = "/data/data/com.alfanla.android.pws/.auth"
$SERVER["socket"] == "0.0.0.0:9999" {
status.status-url = "/server-status"
status.config-url = "/server-config"
alias.url = ("/phpmyadmin" => "/mnt/sdcard/pws/phpmyadmin/")
server.document-root = "/data/data/com.alfanla.android.pws/www/"
auth.backend.plain.userfile = "/data/data/com.alfanla.android.pws/.auth"
auth.require = ( "/" => ( "method" => "basic", "realm" => "Password Protected Area", "require" => "user=admin" ) )
}
server.pid-file = "/data/data/com.alfanla.android.pws/tmp/lighttpd.pid"
server.max-request-size = 1000000
server.network-backend = "writev"
server.upload-dirs = ( "/data/data/com.alfanla.android.pws/tmp/" )
mimetype.use-xattr = "disable"
mimetype.assign = (
".appcache" => "text/cache-manifest",
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postsсript",
".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/javasсript",
".asc" => "text/plain",
".c" => "text/plain",
".cpp" => "text/plain",
".log" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".spec" => "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",
".odt" => "application/vnd.oasis.opendocument.text",
".ods" => "application/vnd.oasis.opendocument.spreadsheet",
".odp" => "application/vnd.oasis.opendocument.presentation",
".odg" => "application/vnd.oasis.opendocument.graphics",
".odc" => "application/vnd.oasis.opendocument.chart",
".odf" => "application/vnd.oasis.opendocument.formula",
".odi" => "application/vnd.oasis.opendocument.image",
".odm" => "application/vnd.oasis.opendocument.text-master",
".ott" => "application/vnd.oasis.opendocument.text-template",
".ots" => "application/vnd.oasis.opendocument.spreadsheet-template",
".otp" => "application/vnd.oasis.opendocument.presentation-template",
".otg" => "application/vnd.oasis.opendocument.graphics-template",
".otc" => "application/vnd.oasis.opendocument.chart-template",
".otf" => "application/vnd.oasis.opendocument.formula-template",
".oti" => "application/vnd.oasis.opendocument.image-template",
".oth" => "application/vnd.oasis.opendocument.text-web",
"" => "application/octet-stream"
)
server.modules = ( "mod_rewrite", "mod_redirect", "mod_alias", "mod_extforward", "mod_access", "mod_auth", "mod_setenv", "mod_magnet", "mod_flv_streaming", "mod_indexfile", "mod_userdir", "mod_dirlisting", "mod_status", "mod_simple_vhost", "mod_evhost", "mod_secdownload", "mod_cgi", "mod_fastcgi", "mod_scgi", "mod_ssi", "mod_proxy", "mod_staticfile", "mod_cml", "mod_trigger_b4_dl", "mod_webdav", "mod_evasive", "mod_compress", "mod_usertrack", "mod_expire", "mod_accesslog" )
Mod_rewrite + Lighttpd
20 Авг 2014Всем привет столкнулся такой проблеммой на денвере нужно включить mod_rewrite,денвер у меня ореентируется на Lighttpd, пробовал включить mod_rewrite прописав в конфигурации Lighttpd данный код :
url.rewrite-once = (
"^/([^.]+)$" => "/index.php?action=$1"
)
но mod_rewrite не включилися,кто знает как включить mod_rewrite помогите пожалуйста,если что вот конфигурация моего Lighttpd
#
# AlfanLA --- Ссылка
#
server.document-root = "/mnt/sdcard/pws/www/"
dir-listing.activate = "enable"
server.errorlog = "/mnt/sdcard/pws/logs/lighttpd.log"
server.port = 8080
server.tag = "lighttpd/1.4.32 - Palapa Web Server (http://alfanla.com)"
index-file.names = ( "index.php", "index.html", "index.htm" )
fastcgi.map-extensions = ( ".php3" => ".php", ".php4" => ".php", ".php5" => ".php" )
fastcgi.server = (
".php" => ((
"host" => "127.0.0.1",
"port" => 9998,
"bin-path" => "/data/data/com.alfanla.android.pws/bin/php",
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "0",
"PHP_FCGI_MAX_REQUESTS" => "10000",
"TMPDIR" => "/data/data/com.alfanla.android.pws/tmp/"
),
"min-procs" => 1,
"max-procs" => 1,
"idle-timeout" => 20
))
)
auth.debug = 2
auth.backend = "plain"
auth.backend.plain.userfile = "/data/data/com.alfanla.android.pws/.auth"
$SERVER["socket"] == "0.0.0.0:9999" {
status.status-url = "/server-status"
status.config-url = "/server-config"
alias.url = ("/phpmyadmin" => "/mnt/sdcard/pws/phpmyadmin/")
server.document-root = "/data/data/com.alfanla.android.pws/www/"
auth.backend.plain.userfile = "/data/data/com.alfanla.android.pws/.auth"
auth.require = ( "/" => ( "method" => "basic", "realm" => "Password Protected Area", "require" => "user=admin" ) )
}
server.pid-file = "/data/data/com.alfanla.android.pws/tmp/lighttpd.pid"
server.max-request-size = 1000000
server.network-backend = "writev"
server.upload-dirs = ( "/data/data/com.alfanla.android.pws/tmp/" )
mimetype.use-xattr = "disable"
mimetype.assign = (
".appcache" => "text/cache-manifest",
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postsсript",
".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/javasсript",
".asc" => "text/plain",
".c" => "text/plain",
".cpp" => "text/plain",
".log" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".spec" => "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",
".odt" => "application/vnd.oasis.opendocument.text",
".ods" => "application/vnd.oasis.opendocument.spreadsheet",
".odp" => "application/vnd.oasis.opendocument.presentation",
".odg" => "application/vnd.oasis.opendocument.graphics",
".odc" => "application/vnd.oasis.opendocument.chart",
".odf" => "application/vnd.oasis.opendocument.formula",
".odi" => "application/vnd.oasis.opendocument.image",
".odm" => "application/vnd.oasis.opendocument.text-master",
".ott" => "application/vnd.oasis.opendocument.text-template",
".ots" => "application/vnd.oasis.opendocument.spreadsheet-template",
".otp" => "application/vnd.oasis.opendocument.presentation-template",
".otg" => "application/vnd.oasis.opendocument.graphics-template",
".otc" => "application/vnd.oasis.opendocument.chart-template",
".otf" => "application/vnd.oasis.opendocument.formula-template",
".oti" => "application/vnd.oasis.opendocument.image-template",
".oth" => "application/vnd.oasis.opendocument.text-web",
"" => "application/octet-stream"
)
server.modules = ( "mod_rewrite", "mod_redirect", "mod_alias", "mod_extforward", "mod_access", "mod_auth", "mod_setenv", "mod_magnet", "mod_flv_streaming", "mod_indexfile", "mod_userdir", "mod_dirlisting", "mod_status", "mod_simple_vhost", "mod_evhost", "mod_secdownload", "mod_cgi", "mod_fastcgi", "mod_scgi", "mod_ssi", "mod_proxy", "mod_staticfile", "mod_cml", "mod_trigger_b4_dl", "mod_webdav", "mod_evasive", "mod_compress", "mod_usertrack", "mod_expire", "mod_accesslog" )
Комментарии:
Besh 21 Авг 2014
Скачай себе open Server и забудь что такое проблемы с денвером + много паков + лучше работает и стабилен как дубина.
Скачай себе open Server и забудь что такое проблемы с денвером + много паков + лучше работает и стабилен как дубина.