Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/05/2015, 13:59
Rasec101
 
Fecha de Ingreso: diciembre-2009
Ubicación: Santiago, Chile
Mensajes: 143
Antigüedad: 14 años, 4 meses
Puntos: 2
Problemas con .htaccess al cambiar de hosting

Buenas tardes. Paso a contar mi problema para ver si me pueden ayudar por favor. Acabo de cambiarme de hosting y en el que tenia anterior mente tenia un archivo .htaccess para las url amigables de mi portal este
Código PHP:
Ver original
  1. # Agregamos está línea para evitar que se puedan explorar los directorios del
  2.  
  3. # servidor, en especial si la ubicación física de los archivos se encuentra
  4.  
  5. # dentro de la estructura del Sitio Web.
  6.  
  7. Options All -Indexes
  8.  
  9.  
  10.  
  11. # Activar RewriteEngine
  12.  
  13. Options +FollowSymLinks
  14.  
  15. RewriteEngine On
  16.  
  17.  
  18.  
  19. # (si lo pongo no funca) RewriteBase /
  20.  
  21.  
  22.  
  23. #Si la url solicitada no es un fichero(existente), continuar...
  24.  
  25. RewriteCond %{REQUEST_FILENAME} !-d
  26.  
  27.  
  28.  
  29. #Si la url solicitada no es una carpeta(existente), continuar...
  30.  
  31. RewriteCond %{REQUEST_FILENAME} !-f
  32.  
  33.  
  34.  
  35. Rewriterule ^noticias/verNoticia/(.+) noticias/verNoticia.php?id_noticia=$1&title=$2 [L]
  36.  
  37.  
  38.  
  39. Rewriterule ^verNoticiasFomento/(.+) verNoticiasFomento.php?id_noticia=$1&title=$2 [L]
  40.  
  41.  
  42.  
  43. Rewriterule ^noticias/enviarNoticia/(.+) noticias/enviarNoticia.php?id_noticia=$1&title=$2 [L]
  44.  
  45.  
  46.  
  47. Rewriterule ^verAnuncio/(.+) verAnuncio.php?idAnuncio=$1&title=$2 [L]
  48.  
  49.  
  50.  
  51. Rewriterule ^verFotos/(.+) verFotos.php?idAnuncio=$1&title=$2 [L]
  52.  
  53.  
  54.  
  55. Rewriterule ^realizarOferta/(.+) realizarOferta.php?idAnuncio=$1&title=$2 [L]
  56.  
  57.  
  58.  
  59. Rewriterule ^OfertaEmpresa/(.+) OfertaEmpresa.php?Anunciante=$1&title=$2 [L]
  60.  
  61.  
  62.  
  63. Rewriterule ^enviarAnuncio/(.+) enviarAnuncio.php?idAnuncio=$1&title=$2 [L]
  64.  
  65.  
  66.  
  67. Rewriterule ^verAnunciante/(.+) verAnunciante.php?Anunciante=$1&title=$2&filtro=$3 [L]
  68.  
  69.  
  70.  
  71. Rewriterule ^verFinanciamiento/(.+) verFinanciamiento.php?idFinanciamiento=$1&title=$2& [L]
  72.  
  73.  
  74.  
  75. Rewriterule ^envioFomento/(.+) envioFomento.php?idFinanciamiento=$1&title=$2& [L]
  76.  
  77.  
  78.  
  79. Rewriterule ^VotacionesAnteriores/(.+) VotacionesAnteriores.php?encuesta=$1&title=$2& [L]
  80.  
  81.  
  82.  
  83. Rewriterule ^Postular/(.+) Postular.php?idFinanciamiento=$1&title=$2& [L]
  84.  
  85.  
  86.       ErrorDocument 404 /errores/error404.html
  87.  
  88.       ErrorDocument 500 /errores/error500.html

y ahora en el nuevo servidor me informan que por problemas de seguridad no activan algunos modulos de apache como
#Options All -Indexes
#Options +FollowSymLinks
con lo cual mi web tiene conflicto con las URL Amigables y no se como puedo solucionarlo. Alguna recomendación por favor.