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 @eightysix
Have you modified Apache virtual file for your domain to Allow URL rewrites? If not, here’s how you go about it:
Open the the Apache virtual file for your domain to make changes:
sudo nano /etc/apache2/sites-available/mysite.conf
Make these additions on the file
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/mysite
ServerName server_domain_name_or_IP
<Directory /var/www/mysite>
AllowOverride All
</Directory>
. . .
Save and exit then enable mode rewrite which allows you to modify URLs:
sudo a2enmod rewrite
Reload Apache
sudo service apache2 reload
I don’t actually have a virtual host setup, but I believe I have allowed URL rewrites globally in my phpmyadmin file. I followed the instructions here:
sudo nano /etc/apache2/conf-available/phpmyadmin.conf
I added AllowOverride All to <Directory /usr/share/phpmyadmin>.
Then I restarted apache, but that didn’t work…
Do I require a virtual host?