I’ve been developing a site locally and just uploaded it to a server. All pages work fine locally, including the panel. On the server, all pages work fine except for the panel page, which throws a 404.
Here’s my htaccess file, where I tried the “Options -Multiviews” and “RewriteBase /” tips. I tried looking for the httpd conf Apache config file but haven’t been able to locate it (I’m using shared hosting with NameCheap, if that helps).
# Kirby .htaccess
#Fix Rewrite
Options -Multiviews
# rewrite rules
<IfModule mod_rewrite.c>
# enable awesome urls. i.e.:
# http://yourdomain.com/about-us/team
RewriteEngine on
# make sure to set the RewriteBase correctly
# if you are running the site in a subfolder.
# Otherwise links or the entire site will break.
#
# Set the RewriteBase to:
RewriteBase /
# block text files in the content folder from being accessed directly
RewriteRule ^content/(.*)\.(txt|md|mdown)$ index.php [L]
# block all files in the site folder from being accessed directly
RewriteRule ^site/(.*) index.php [L]
# block all files in the kirby folder from being accessed directly
RewriteRule ^kirby/(.*) index.php [L]
# make panel links work
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^panel/(.*) panel/index.php [L]
# make site links work
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
</IfModule>
# Additional recommended values
# Remove comments for those you want to use.
#
# AddDefaultCharset UTF-8
#
# php_flag short_open_tag on
AuthType Basic
AuthName "restricted area"
AuthUserFile /home/abodkncn/public_html/.htpasswd
require valid-user
Yeah, I even tried uploading a completely unaltered version of the latest version of Kirby (except for adding a single user as per these instructions: https://getkirby.com/docs/installation/panel) but still no luck.
It’s installed in a default public_html folder in the root, which is where I have installed other sites using this host in the past.
I couldn’t find another .htaccess file.
Server was running php version 5.6.24, just changed it to 7.0.9. Site is located at http://www.abodyhasnocenter.com (info at http://www.abodyhasnocenter.com/info.php).
This is strange. I’d say it can’t be the .htaccess, because subpages are working, but nevertheless, could you pls. try to put some nonsense into the .htaccess to make sure it is working?