If I have the following in the conf file:
<IfModule mod_dir.c>
DirectoryIndex index.html index.php
</IfModule>
Alias /icc_profiles/ "/
<Directory "/ Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Why doesn't work correctly(404 file not found) but work fine.
<IfModule mod_dir.c>
DirectoryIndex index.html index.php
</IfModule>
Alias /icc_profiles/ "/
<Directory "/ Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Why doesn't work correctly(404 file not found) but work fine.