-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How make pretty url nextcloud #73
Comments
I had the same issue as you, and I fixed it by modifying the nginx.conf with stuff I took from Nextcloud's own documentation : https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html So, the first step you should do is edit the config.php (nextcloud/data/config/config.php) file by adding
at the bottom before the last parenthesis and colon And then, enter this command to update the .htaccess file
For the nginx.conf file, you can copy mine here : nginx config
Restart the nginx-server container and it should be working! |
How make url without index.php
http://mynextcloud.com/***index.php***/.... to http://mynextcloud.com/....
The text was updated successfully, but these errors were encountered: