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.

When i enter website in url https://example.com/. i can enter website. but i enter website in url example.com/ Webpage showing error.
Forbidden
You don't have permission to access this resource.
Apache/2.4.41 (Ubuntu) Server at example.com Port 80
I check log
sudo tail -100 /var/log/apache2/error.log
This is result
[Wed Jul 20 07:18:22.838769 2022] [rewrite:error] [pid 234347] [client 49.228.236.32:37690] AH00670: Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions : /var/www/example/
I fix in apache2.conf and .htaccess
<VirtualHost *:80>
<Directory /usr/share>
AllowOverride All
Require all granted
</Directory>
<Directory /var/www>
Options +SymLinksIfOwnerMatch
AllowOverride All
Order deny,allow
Allow from all
</Directory>
#<Directory /srv>
# Options Indexes FollowSymLinks
# AllowOverride All
# Require all granted
#</Directory>
</VirtualHost>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Bug can not fix issue
gerard
Jon Harris
orbitstorm88
rem3n
yolanda smith
301276acdc124dd982fe86364ba8c4
30ddab6038c044188d489290785dcb
699c9bc0a2c34f248e792cb8d2c6ab
Kent Morlan
sylvaticus
agitechcr
8b8f3c8ea96345bf8ddb0a59a008e2