Reputation: 197
Does anyone know if I can serve content from http://example.com/folder/public/, when a person visits http://example.com/folder/ exact file will help.
Upvotes: 1
Views: 349
Reputation: 785058
Place this .htaccess in /folder/.htaccess
:
RewriteEngine On
RewriteBase /folder/
RewriteRule ^((?!public/).*?)/?$ public/$1 [L,NC]
Upvotes: 3