Answers for "set htaccess in public html directory to allow public"

PHP
2

htaccess redirect to public folder

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ public/index.php?$1 [L,QSA]
Posted by: Guest on June-13-2020
-1

public laravel htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
Posted by: Guest on September-16-2020

Code answers related to "set htaccess in public html directory to allow public"

Browse Popular Code Answers by Language