Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/11/2013, 10:09
Avatar de luzzifer
luzzifer
 
Fecha de Ingreso: julio-2009
Ubicación: Paraná - Argentina
Mensajes: 169
Antigüedad: 14 años, 9 meses
Puntos: 3
Respuesta: Wamp y Apache Imposible Activar rewrite_modulo

este es el httpd.conf le quite todos los # asi es mas corto el archivo solo para postear
Código HTML:
Ver original
  1. #
  2.  
  3. ServerRoot "E:/SERVER/wamp/bin/apache/apache2.4.4"
  4.  
  5.  
  6.  
  7. #Listen 12.34.56.78:80
  8. Listen 80
  9.  
  10. LoadModule access_compat_module modules/mod_access_compat.so
  11. LoadModule actions_module modules/mod_actions.so
  12. LoadModule alias_module modules/mod_alias.so
  13. LoadModule allowmethods_module modules/mod_allowmethods.so
  14. LoadModule asis_module modules/mod_asis.so
  15. LoadModule auth_basic_module modules/mod_auth_basic.so
  16.  
  17. LoadModule authn_core_module modules/mod_authn_core.so
  18.  
  19.  
  20. LoadModule authn_file_module modules/mod_authn_file.so
  21.  
  22.  
  23. LoadModule authz_core_module modules/mod_authz_core.so
  24.  
  25.  
  26. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  27. LoadModule authz_host_module modules/mod_authz_host.so
  28.  
  29. LoadModule authz_user_module modules/mod_authz_user.so
  30. LoadModule autoindex_module modules/mod_autoindex.so
  31.  
  32. LoadModule cgi_module modules/mod_cgi.so
  33.  
  34. LoadModule dir_module modules/mod_dir.so
  35.  
  36. LoadModule env_module modules/mod_env.so
  37.  
  38. LoadModule include_module modules/mod_include.so
  39.  
  40. LoadModule isapi_module modules/mod_isapi.so
  41.  
  42. LoadModule log_config_module modules/mod_log_config.so
  43.  
  44. LoadModule mime_module modules/mod_mime.so
  45.  
  46. LoadModule negotiation_module modules/mod_negotiation.so
  47.  
  48. LoadModule rewrite_module modules/mod_rewrite.so
  49.  
  50.  
  51. LoadModule php5_module "E:/SERVER/wamp/bin/php/php5.4.16/php5apache2_4.dll"
  52.  
  53. <IfModule unixd_module>
  54.  
  55. User daemon
  56. Group daemon
  57.  
  58. </IfModule>
  59.  
  60.  
  61.  
  62.  
  63.  
  64. ServerAdmin [email protected]
  65.  
  66.  
  67. ServerName localhost
  68.  
  69.  
  70. <Directory />
  71.     AllowOverride All
  72.     Require all granted
  73. </Directory>
  74.  
  75.  
  76. DocumentRoot "E:/SERVER/wamp/www"
  77. <Directory "E:/SERVER/wamp/www">
  78.  
  79.     Options Indexes FollowSymLinks
  80.  
  81.  
  82.      Order Deny,Allow
  83.      Allow from all
  84.      Allow from 127.0.0.1
  85.      Allow from ::1
  86.      Allow from localhost
  87. </Directory>
  88.  
  89. <IfModule dir_module>
  90.     DirectoryIndex index.php index.php3 index.html index.htm
  91. </IfModule>
  92.  
  93.  
  94. <Files ".ht*">
  95.     Require all denied
  96. </Files>
  97.  
  98.  
  99. LogLevel warn
  100.  
  101. <IfModule log_config_module>
  102.  
  103.     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  104.     LogFormat "%h %l %u %t \"%r\" %>s %b" common
  105.  
  106.     <IfModule logio_module>
  107.       # You need to enable mod_logio.c to use %I and %O
  108.       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  109.     </IfModule>
  110.     CustomLog "logs/access.log" common
  111.     CustomLog "E:/SERVER/wamp/logs/access.log" common
  112. </IfModule>
  113.  
  114. <IfModule alias_module>
  115.  
  116.     ScriptAlias /cgi-bin/ "E:/SERVER/wamp/cgi-bin/"
  117.  
  118. </IfModule>
  119.  
  120. <IfModule cgid_module>
  121.  
  122. </IfModule>
  123.  
  124. #
  125. # "E:/SERVER/wamp/cgi-bin" should be changed to whatever your ScriptAliased
  126. # CGI directory exists, if you have that configured.
  127. #
  128. <Directory "E:/SERVER/wamp/cgi-bin">
  129.     AllowOverride All
  130.     Options None
  131.     Require all granted
  132. </Directory>
  133.  
  134. <IfModule mime_module>
  135.     #
  136.     # TypesConfig points to the file containing the list of mappings from
  137.     # filename extension to MIME-type.
  138.     #
  139.     TypesConfig conf/mime.types
  140. </IfModule>
  141. Include conf/extra/httpd-mpm.conf
  142. # Multi-language error messages
  143. #Include conf/extra/httpd-multilang-errordoc.conf
  144. # Fancy directory listings
  145. #Include conf/extra/httpd-autoindex.conf
  146. # Language settings
  147. #Include conf/extra/httpd-languages.conf
  148. # User home directories
  149. #Include conf/extra/httpd-userdir.conf
  150. # Real-time info on requests and configuration
  151. #Include conf/extra/httpd-info.conf
  152. # Virtual hosts
  153. #Include conf/extra/httpd-vhosts.conf
  154. # Local access to the Apache HTTP Server Manual
  155. #Include conf/extra/httpd-manual.conf
  156. # Distributed authoring and versioning (WebDAV)
  157. #Include conf/extra/httpd-dav.conf
  158. # Various default settings
  159. #Include conf/extra/httpd-default.conf
  160. # Configure mod_proxy_html to understand HTML4/XHTML1
  161. <IfModule proxy_html_module>
  162. Include conf/extra/proxy-html.conf
  163. </IfModule>
  164.  
  165. <IfModule ssl_module>
  166. SSLRandomSeed startup builtin
  167. SSLRandomSeed connect builtin
  168. </IfModule>
  169.  
  170.  
  171.  
  172. IncludeOptional "E:/SERVER/wamp/vhosts/*"
  173. Include "E:/SERVER/wamp/alias/*"

Desde ya muchas gracias por tu ayuda