[Request] IndexHeadInsert compability (as in Apache's mod_autoindex)

#1
Hi!

It's seems like LSWS is missing a lot of Apache's .htaccess functionality, like most of the mod_autoindex Apache Module.

I'm requesting support for IndexHeadInsert or something similar, so I can add the following line to my direcotry listings. (They are extremely hard to use on a mobile device without it.)

The much needed line of HTML code is:
HTML:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
With this functionality you could also add custom CSS styling, which would be nice too.
 
Last edited:
#2
By the way, why is the automated directory listing using this very old version of HTML doctype declaration?
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
It's from 1997. The current version (HTML5.1) should be declared as
HTML:
<!doctype html>
I know this doesn't really change anything, just wondering...
 
Last edited:
Top