- After download all files from gist place files in correct folder follow as File Hierarchy (Given below).
- Run those command serially
composer dump-autoload
php artisan migrate
| @import url('https://cdn.syncfusion.com/ej2/material.css'); | |
| .sidebar { | |
| box-shadow: rgb(113 122 131 / 11%) 0px 7px 30px 0px; | |
| } | |
| .nav-item, | |
| .navbar { | |
| z-index: 10000; | |
| } | |
| @media screen and (max-width:800px) { |
| RewriteEngine On | |
| #redirect non-www to www for all domain | |
| RewriteCond %{HTTP_HOST} !^www\. | |
| RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] | |
| #redirect non-www to www for specific domain | |
| RewriteCond %{HTTP_HOST} ^example\.com | |
| RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L] |