Hola buenas,
Me e organizado un MVC y tengo dos carpetas
# app
# controllers
# models
# Views
#public
# css
# js
# img
# index.php
# register.php
Donde tengo un fichero .htaccess donde me gustaria que la plataforma solo me abriera y leiera todos los archivos de public.
Actualmente tengo un .htaccess pero solo me ejecuta el index.php y no me lee nada mas.
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
RewriteBase /
# we skip all files with .something
RewriteCond %{REQUEST_URI} \..+$
RewriteCond %{REQUEST_URI} !\.html$
RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ public/index.php [QSA,L]
</IfModule>
ErrorDocument 404 http://www.doiser.es/ErrorDocument/404page.html
Como podria hacer que abriera el interface como public todo y me leiera las carpetas y todos sus archivos??
Muchisimas gracias.