Skip to content

MystixCode/simple-web-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple frontend

A very basic webapp boilerplate only using html, css, js (and a little jquery that i want to eliminate one day)

HowTo

  1. Put it on your webserver

  2. If u use apache create a .htaccess file with following content in the root directory:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ ./index.html [NC,L]

If u use nginx change location in ur server block config to this:

	location / {
		try_files $uri $uri/ /index.html =404;
	}
  1. Thats it!

About

This was just an idea, never fully implemented

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published