admin/login route not found
-
I have just installed bagisto on http://54.224.207.164/. My issue is that no routes are working customer/register even admin/login.
I have tried both installer and the command line install options with the same issue.
What could be wrong?
-
Hello,
You have missed your server configuration that's why any route is not working.
If you are using apache2 serve then you can do following.Step-1
Open our apache2.conf file ( etc->apache2)Step2
There you can find some think like this-<Directory /home/users/www>
Options Indexes FollowSymLinks
AllowOverride noe
Require all granted
</Directory>change it to
<Directory /home/users/www>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>Note - Directory structure will be different in your case & may be some value
Step-3
Run the below command -
sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
or
sudo service apache2 restart
php artisan route:cacheThanks
Rahul Shukla -
I've Followed all the steps, But still no success
It was working fine earlier. I ran php artisan route:cache and it stopped working
-
Sometimes publishers won't run properly. Try with publishing again.