404 Error after install
Sendy uses URLs without extensions, also known as 'Pretty URLs'. Instead of using URLs that ends like this /login.php
, it uses URLs that ends like this /login
. If you get a 404 error at the login page after installation, check the following list:
- Did you upload Sendy's .htaccess file?
- Try adding
RewriteBase /sendy
after the lineRewriteEngine On
in Sendy's .htaccess file (if your Sendy URL looks like this https://mydomain.com/sendy). Or addRewriteBase /
if your Sendy URL looks like this https://sendy.mydomain.com. - If you setup your own server, ensure
AllowOverride All
is set in your Apache's httpd.conf instead ofAllowOverride None
so that Sendy's .htaccess file is not ignored by your server. Remember to reboot Apache after making changes to httpd.conf.
This discussion has been closed.