cakephp2-php8/.htaccess

8 lines
166 B
ApacheConf
Raw Normal View History

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
#RewriteCond %{REQUEST_URI} !^/cake$
RewriteRule (.*) public/$1 [L]
</IfModule>