6
Estoy tratando de usar combustible en mi servidor de la lámpara arch Linux. Pero no puedo hacer que htaccess funcione. Mi carpeta de inicio es Ytsejam/fuel_cms/..FUELCMS (codeigniter) htaccess: orden toma un argumento, 'permitir, denegar', 'denegar, permitir', error
Este es mi archivo .htaccess:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
<Files .*>
Order deny, allow
Deny From All
</Files>
# Allow asset folders through
RewriteRule ^(fuel/modules/(.+)?/assets/(.+)) - [L]
# Protect application and system files from being viewed
RewriteRule ^(fuel/install/.+|fuel/crons/.+|fuel/data_backup/.+|fuel/codeigniter/.+|fuel/modules/.+|fuel/application/.+|\.git.+) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [L]
</IfModule>
Options -Indexes
/var/log/httpd/error_logs muestran que
/home/ytsejam/public_html/fuel_cms/.htaccess: order takes one argument, 'allow,deny', 'deny,allow', or 'mutual-failure'
puede alguien ayudarme?
Gracias funciona ahora. – ytsejam
Gracias! Perdí 30 minutos para entender por qué no funciona – Riho