Index of / Index of /. Name Last modified Size Description. Proudly Served by LiteSpeed Web Server at www.smartenglishgrammar.com Port 443. You visite

#2
this means you don't have any websites on that domain..

it looks as your web is not uploaded to the directory.. did you have any website uploaded.

index.html page or index.php ?

it seems to be empty
 
#3
I have the same problem but my website is handled via cPanel on hostinger. I built it with laravel & php and when I type Fabio Origoni, the description of the site appear to be
Name Last Modified Size
https://fabioorigoni.ch

Index of /. Name · Last Modified · Size. Proudly Served by LiteSpeed Web Server at fabioorigoni.ch Port 443.
I tried to edit my .htaccess and now it is like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^(.*)$ public/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
I recentely added the last 4 lines from a stackoverflow post but it seems it is not working.
 
Top