En mi http.conf del apache tengo lo siguiente:
Código:
Quiero autorizar un .htaccess que está en mi raíz del server, que contiene ésto:<Directory "C:/Archivos de programa/Apache Software Foundation/Apache2.2/htdocs"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.2/mod/core.html#options # for more information. # Options Indexes FollowSymLinks Includes #Options FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride none # # Controls who can get stuff from this server. # Order allow,deny Allow from all </Directory>
Código:
Para tal fin, cambio la líneaOptions +FollowSymLinks RewriteEngine on RewriteRule ^site/p_contenido.php/(.+)/(.+)/(.+)/(.+)$ http://url/site/p_contenido.php?idc=...idp=$3&idpp=$4 RewriteRule ^site/p_contenido.php/(.+)/(.+)/(.+)$ http://url/site/p_contenido.php?idc=$1&idsc=$2&idp=$3 RewriteRule ^site/p_contenido.php/(.+)/(.+)$ http://url/site/p_contenido.php?idc=$1&idsc=$2 RewriteRule ^site/p_contenido.php/(.+)$ http://url/site/p_contenido.php?idc=$1
AllowOverride none
por
AllowOverride All
Pero entonces el site me arroja el siguiente errorÑ
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Qué otra cosa debo modificar en el httpd.conf del apache para que acepte los .htaccess ????
Estoy en un servidor windows con apache 2.2
Gracias