skip to Main Content

Html – How can I customize the web page displayed when a user is prompted for username and password via the browser basic/digest authentication modal?

I have a web app that is served with Lighttpd. I implemented digest authentication to the application using its Lighttpd's mod_auth module: https://redmine.lighttpd.net/projects/lighttpd/wiki/Mod_auth Currently it displays a blank white page when user is prompted for username and password. I'd like…

VIEW QUESTION

Apache mod_rewrite to lighttpd

I'm trying to transfer a PHP project from apache to lighttpd. I have the following rewrite in the apache: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule !.(js|ico|gif|jpg|jpeg|png|css|ttf)$ /index.php?_url=/$1 [QSA,L] I can't manage to translate it to lighttpd mod_rewrite.…

VIEW QUESTION
Back To Top
Search