24/03/2008, 11:31
|
| | Fecha de Ingreso: agosto-2003 Ubicación: valencia
Mensajes: 21
Antigüedad: 21 años, 4 meses Puntos: 0 | |
Re: mod rewrite configuracion extra Al final consegui utilizar lo que queria en los foros, simplemente contesto en este nuevo post para hacer una pregunta simple, el htacces que os enseño a continuacion resulta un htacces pesado que pueda ralentizar en algo mi pagina web?
RewriteEngine On
RewriteRule home.html noticias.php [L]
RewriteRule index.html noricias.php [L]
RewriteRule index.htm noticias.php [L]
RewriteRule default.html noticias.php [L]
RewriteRule default.htm noticias.php [L]
RewriteBase /
# =============================================
# FORO EXTENSION ================================
RewriteRule foro.html anime/foro/foro.php [L]
RewriteRule ^anime-f([0-9]*)/(.*) /anime/foro/foro_verforo.php?$1 [L,NC]
RewriteRule ^anime_f([0-9]*)/(.*) /anime/foro/foro_vertopico.php?$1 [L,NC]
RewriteRule anime-f([0-9]*)-([0-9]*)\/(.*)$ anime/foro/foro_vertopico.php?$1.$2 [L]
RewriteRule anime/f([0-9]*)-([0-9]*)\/(.*)$ anime/foro/foro_verforo.php?$1.$2 [L]
RewriteRule ([0-9]*)-last\/(.*)$ anime/foro/foro_vertopico.php?$1.last [L]
RewriteRule foro-r([0-9]*)\.html(.*)$ anime/foro/foro_publicar.php?rp.$1 [L,NC]
RewriteRule foro-p([0-9]*)\.html(.*)$ anime/foro/foro_publicar.php?nt.$1 [L,NC]
RewriteRule foro-e([0-9]*)\.html(.*)$ anime/foro/foro_publicar.php?edit.$1 [L,NC]
RewriteRule foro-q([0-9]*)\.html(.*)$ anime/foro/foro_publicar.php?quote.$1 [L,NC]
RewriteRule top-poster-([0-9]*)-([0-9]*)\.html(.*)$ top.php?$1.top.foro.$2 [L,NC]
RewriteRule top-active([0-9]*)\.html(.*)$ top.php?$1.active [L,NC]
RewriteRule top-active-([0-9]*)-([0-9]*)\.html(.*)$ top.php?$1.active.foro.$2 [L,NC]
#==============================================
# USUARIO.PHP ====================================
RewriteRule usuario.html usuario.php [L]
RewriteRule usuario([0-9]*)\.html(.*)$ usuario.php?id.$1 [L] |