Project Laravel 404 notfound di ubuntu
saat memindahkan project laravel dari windows ke ubuntu dan buat virtual host..
yang muncul hanya halaman utama saja dan tidak bisa akses ke url lain padahal route sudah ada..
Apache/2.4.18 (Ubuntu) Server at localhost Port 80
caranya di virtual host yang anda buat ubah jadi seperti ini..
<Directory /var/www/html/public> <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> </Directory>
dan pastikan sudah jalankan command a2enmod rewrite
yang muncul hanya halaman utama saja dan tidak bisa akses ke url lain padahal route sudah ada..
Not Found
The requested URL /sim was not found on this server.Apache/2.4.18 (Ubuntu) Server at localhost Port 80
caranya di virtual host yang anda buat ubah jadi seperti ini..
<Directory /var/www/html/public> <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> </Directory>
dan pastikan sudah jalankan command a2enmod rewrite
0 comments: