'Redirect without changing the url in the adressbar

So, i want address chat.example.tk to display the contents of example.tk/chat, but in a way that the address bar still displays chat.example.tk

This is the .htaccess code i tried:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^chat.example.tk
RewriteRule ^(.*)$ http://example.tk/chat/$1 [L,NC,QSA]


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source