i'm using laravel to make my website. after i upload my web files on my sub-domain : rivelapark.com/au i can't access rivelapark.com/au/public/login (*in my local server, localhost/au/public/login did works)
But, when i access rivelapark.com/au/public/index.php/login it works but my bootstrap is not working.
Here is my app>config>database.php:
'mysql' => array(
'driver' => 'mysql',
'host' => 'rivelapark.com',
'database' => '******',
'username' => '********',
'password' => '*******',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
and this is my public>.htaccess :
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Is there anyone could help ? Thank You Guys