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# Agregamos está línea para evitar que se puedan explorar los directorios del
# servidor, en especial si la ubicación física de los archivos se encuentra
# dentro de la estructura del Sitio Web.
Options All -Indexes
# Activar RewriteEngine
Options +FollowSymLinks
RewriteEngine On
# (si lo pongo no funca) RewriteBase /
#Si la url solicitada no es un fichero(existente), continuar...
RewriteCond %{REQUEST_FILENAME} !-d
#Si la url solicitada no es una carpeta(existente), continuar...
RewriteCond %{REQUEST_FILENAME} !-f
Rewriterule ^noticias/verNoticia/(.+) noticias/verNoticia.php?id_noticia=$1&title=$2 [L]
Rewriterule ^verNoticiasFomento/(.+) verNoticiasFomento.php?id_noticia=$1&title=$2 [L]
Rewriterule ^noticias/enviarNoticia/(.+) noticias/enviarNoticia.php?id_noticia=$1&title=$2 [L]
Rewriterule ^verAnuncio/(.+) verAnuncio.php?idAnuncio=$1&title=$2 [L]
Rewriterule ^verFotos/(.+) verFotos.php?idAnuncio=$1&title=$2 [L]
Rewriterule ^realizarOferta/(.+) realizarOferta.php?idAnuncio=$1&title=$2 [L]
Rewriterule ^OfertaEmpresa/(.+) OfertaEmpresa.php?Anunciante=$1&title=$2 [L]
Rewriterule ^enviarAnuncio/(.+) enviarAnuncio.php?idAnuncio=$1&title=$2 [L]
Rewriterule ^verAnunciante/(.+) verAnunciante.php?Anunciante=$1&title=$2&filtro=$3 [L]
Rewriterule ^verFinanciamiento/(.+) verFinanciamiento.php?idFinanciamiento=$1&title=$2& [L]
Rewriterule ^envioFomento/(.+) envioFomento.php?idFinanciamiento=$1&title=$2& [L]
Rewriterule ^VotacionesAnteriores/(.+) VotacionesAnteriores.php?encuesta=$1&title=$2& [L]
Rewriterule ^Postular/(.+) Postular.php?idFinanciamiento=$1&title=$2& [L]
ErrorDocument 404 /errores/error404.html
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.