By itayperry91
I have been trying to host a website (php project) on Digital Ocean using Ubuntu 2.4.18 Example linkand apparently it’s pretty complicated for the inexperienced. I uploaded all files to var/www/html using FileZilla and the main router doesn’t work. Instead of domain/login router the only router that works is domain/index.php/login. I’ll show you - http://www.itayperry.com/index.php/login
Why does this happen? The index.php should’nt be there. I would love for some help :)
BTW, the project is built in a Slim Framework (with Twig) and the main file is index.php containing a routers.php requirement indise of it.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @itayperry91,
This sounds like you’ve forgotten to copy your .htaccess file.
Slim recommends using these rules for Apache. (.htaccess)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
If this still doesn’t work as it’s suppose to, please check your Apache Configuration. You have to set the AllowOverride directive to “All” there.
Additionally make sure that “/public” is your root virtual directory.
Regards, KDSys
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.