@nyleor To access project without public prefix follow the steps :
Update your Laravel configuration: Edit the bootstrap/app.php file in your Laravel project and modify the public_path() function call to include the subdirectory name. For example, if your subdirectory name is laravel-project, change the line from:
$app->bind('path.public', function () {
return __DIR__.'/../public';
});
to
$app->bind('path.public', function () {
return __DIR__.'/../laravel-project';
});
This tells Laravel to use the laravel-project subdirectory as the public directory instead of the default public directory.
assuming you are using the Apache Server:
.htaccess changes
RewriteEngine On
<IfModule mod_rewrite.c>
RewriteRule ^(.*)$ public/ [L]
</IfModule>
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <[email protected]>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';