Skip to content

deploy angular on Apache2

Zuned Ahmed edited this page Mar 3, 2022 · 3 revisions
####https://stackoverflow.com/questions/43038060/deploy-angular-2-to-apache-server
`< Directory "C:/Users/zahmed6/my_drive/soft/Apache/Apache24/htdocs" >`
	AllowOverride All
	RewriteEngine On
	# If an existing asset or directory is requested go to it as it is
	RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f
	RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d

	RewriteRule ^(.*)$ index.html [L]
	RewriteRule prescreen/* index.html [L]

`< /Directory >`

Clone this wiki locally