Digamos que tengo una reescritura que necesita pasar la URL a una función de PHP y recuperar un valor para decir cuál debe ser el nuevo destino. ¿Hay una manera de hacer eso?Ejecuta código PHP desde .htaccess?
Gracias.
ACTUALIZACIÓN:
Gracias por lo guys..I ahora todavía tengo problemas, pero te voy a mostrar mi código:
.htaccess
#I got the file path by echoing DOCUMENT_ROOT and added the rest.
RewriteMap fixurl prg:/var/www/vhosts/mydomain.com/httpsdocs/domain_prototype/code_base/url_handler.php
RewriteEngine On
RewriteRule (.*) ${fixurl:$1} [PT]
PHP:
set_time_limit(0); # forever program!
$keyboard = fopen("php://stdin","r");
while (1) {
$line = trim(fgets($keyboard));
print "www.google.com\n"; # <-- just test to see if working.
}
Sin embargo, estoy obteniendo un 500 Internal Server Error No estoy seguro de si hay un error en mi .htaccess o en mi PHP?