Salut ,
j'ai un petit problème concernant URL Rewriting en cas de la présence de variables
j'ai testé dans fichier normale genre
test.php en test.html avec ce code ça marche bien
maintenant le problème c'est au niveau de la présence des de variables dans lien
genre
test.php?id=13&titre=testtitre
lorsque j'ai écrit ce code
ça marche pas et il m'affiche cette erreur
merci
j'ai un petit problème concernant URL Rewriting en cas de la présence de variables
j'ai testé dans fichier normale genre
test.php en test.html avec ce code ça marche bien
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^test\.html$ /test.php [L]
maintenant le problème c'est au niveau de la présence des de variables dans lien
genre
test.php?id=13&titre=testtitre
lorsque j'ai écrit ce code
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^test_([0-9]+)_([0-9]+)\.html
/test.php?id=$1&titre=$2 [L]
ça marche pas et il m'affiche cette erreur
Code:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@monsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
merci