Skip to content

Instantly share code, notes, and snippets.

@shibbirweb
Created November 11, 2018 12:45
Show Gist options
  • Save shibbirweb/5fdb2ca365468ef54e559d9755ab987e to your computer and use it in GitHub Desktop.
Save shibbirweb/5fdb2ca365468ef54e559d9755ab987e to your computer and use it in GitHub Desktop.
[Laravel] If object not found after move index.php file from public folder to root directory use this .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /your_directory_name_here/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment