Horje
Remove public or index file from url in laravel Code Example
Remove public or index file from url in laravel
<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} -d [OR]
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^ ^$1 [N]

    RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
    RewriteRule ^(.*)$ public/$1 

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ server.php

</IfModule>




Php

Related
how to use md5 in php Code Example how to use md5 in php Code Example
laravel web php request to redirect to another page Code Example laravel web php request to redirect to another page Code Example
show comma separated numbers in php Code Example show comma separated numbers in php Code Example
php get filetype Code Example php get filetype Code Example
jquery click not working Code Example jquery click not working Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6