The /install/
path should indeed redirect based on the rewrite rules. Make sure the .htaccess file is present in the root folder and check if the mod_rewrite module is loaded.
How to find if Apache's mod_rewrite module is enabled, and if not -> enable it
Case 1:
If PHP is run as an Apache module it's easy to find the loaded module using phpinfo().
- Create a file named phpinfo.php, containing
<?php phpinfo(); ?>
- Open the file using your browser.
- Search for mod_rewrite.
If mod_rewrite is installed, you should find it in the "Apache loaded modules". If not, you can enable it like this: Linux / Windows.
Case 2:
If PHP is run as CGI module then there is no such info in phpinfo. In this case you need to actually test it if you want to know if mod_rewrite module is enabled or not.
- Create an .htaccess in some subfolder and make sure it contains:
RewriteEngine on
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
Point your browser to the folder. If you get a Server Error, it isn't installed. If you the browser did redirect to https://www.example.com it is installed.
If mod_rewrite is enabled, but you still get a 404, please let us know the version of Mokuji as well as your server coniguration.