my htaccess file that was working fine in shared hosting plan is....
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
and here in aapanel, I am using laravel 5 rewrite code.
does anything needs to be changed for the files to work properly..?
also, at many places, it says, blocked by client
why is that error message?
check the link out at,
https://vcardpro.me/resdemo
also when I click the floating download button, it throws 500 error in console window and nothing happens visually, which you can also see, that worked perfectly on my shared hosting but not here.