Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @garfield1979 ,
Open
Apache/conf/httpd.conf
find
#LoadModule rewrite_module modules/mod_rewrite.so
and delete #
Overwrite .htaccess with
RewriteEngine on
RewriteBase /
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
Then restart Apache service.
Kind regards, Shiroka
Thanks for the help.
So I’ve looked for httpd.conf file, I cannot find it. the only conf file referenced in apache is 000-default.conf (which contents i posted above) there also is no .htaccess file present anywhere in the website.