Hello all!
I´ve been reading sooo many posts here and I found that even if the host don´t have the configuration as Drupal needs, people can do something about it changing the htaccess file and maybe the config one.
I tried everything based on what I´ve readed here, but nothing seems to work!
This is my htaccess file:
# Various rewrite rules
<IfModule mod_rewrite.c>
RewriteEngine on
# Modify the RewriteBase if you are using Drupal in a subdirectory and the
# rewrite rules are not working properly:
RewriteBase /drupal
# Rewrite old-style URLS of the form 'node.php?id=x':
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]
# Rewrite old-style URLs of the form 'module.php?mod=x':
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]
# Rewrite URLs of the form 'index.php?q=x':
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
# $Id: .htaccess,v 1.56 2003/12/18 18:53:11 dries Exp $
I have installed drupal on www.ligadelconsorcista.org/drupal
Is there a possibility that my htaccess file on the principal directory is causing me truble?
This is my principal htaccess file (inside public_html folder)
AddType text/html .shtml
AddHandler server-parsed .html
Options Indexes FollowSymLinks Includes ExecCGI
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} respuestas.ligadelconsorcista.org$
RewriteCond %{REQUEST_URI} !/respuestas/index.html
RewriteRule ^(.*)$ respuestas/$1
ErrorDocument 403 /error.html
ErrorDocument 404 /error.html
ErrorDocument 500 /error.html
And this is my config configuration: