DEV Community

Discussion on: Challenge: Write a program that never stops

Collapse
 
eigenvalue profile image
Lucio Rossi

This is not a program in the strict sense and surely it will never run forever, but still it's a lot of fun

<IfModule mod_ssl.c>
<VirtualHost *:443>
   RewriteEngine on
   RewriteRule ^ https://%{SERVER_NAME}/fun%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
</IfModule>