Hello, I am a beginner in Apache Web server, whether it is possible to make some rewrite function ( or something similar ) to add some text on url from access ? For example http://someusername:somepassword@domen.com/testurl I need some function in httpd.conf where in SetHandler server-status ( http://domen.com:80/server-status ) can see users who are connected like /testurl?username=someusername:somepassword ? I did link http://someusername:somepassword@domen.com/testurl?username=someusername:somepassword but some users delete from ?username=someusername:somepassword from link and I have a problem to monitoring that lines !
First of all - in production, sending the password as a GET-attribute is VERY BAD PRACTICE - and should not be done. Also, sending the username/password combo like this is horrible, horrible coding - why in the world do you need both? Usernames should be unique, and if you're logging on those, only when a user is logged in, you'll get the data you want?
This I need to monitoring login instance for clients ( one username can use lot of time, I need to monitoring in server-status page). Did you have some exampe how to resolve ? Regards