Url rewriting en local sur Wamp

Fermé
hassen.dev Messages postés 2 Date d'inscription lundi 30 avril 2012 Statut Membre Dernière intervention 30 avril 2012 - 30 avril 2012 à 19:25
tryan44 Messages postés 1288 Date d'inscription mardi 24 janvier 2012 Statut Membre Dernière intervention 26 octobre 2014 - 30 avril 2012 à 21:21
Salut tous le monde
Voila, mon problème est que je n'arrive pas à faire de rewriting, je galère depuis des jours mais je n'arrive pas à un résultat. Pour que vous aurez une idée claire et pour q'on évite les intervention inutile voila ce que j'ai essayé :

« rewrite_module » est integré
« LoadModule rewrite_module modules/mod_rewrite.so » est décoché

Fichier httpd.conf :
<Directory />
    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    Deny from all
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "c:/wamp/www/">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride all

    #
    # Controls who can get stuff from this server.
    #

#   onlineoffline tag - don't remove
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1

</Directory>
  





Fichier .htaccess :
Options +FollowSymlinks All -Indexes
RewriteEngine on 
RewriteRule   ^nexi.html$   index.html [L]
ErrorDocument 404 /index.php

Quelques remarques sur le fichier .htaccess :
- fichier index.html existe
- fichier nexi.html n'existe pas
- fichier index.php n'existe pas

Ce que je veux c'est changer l'addresse « http://localhost/testing/ » ou « http://localhost/testing/index.html » en http://localhost/testing/nexi.html.

Le fichier .htaccess est à la racine de mon site c'est à dire dans la répertoire testing et il fonctionne correctement car j'ai remarqué par hasard que si je mets index.php dans ErrorDocument, lorsqu'il y a un erreur il me dirige vers la page d'acceuil du serveur ce qui est un peut étrange o_O mais si je change index.php par /testing/error.php ça fonctionne correctement mais le rewriting ne fonctionne pas toujours.

Fichier .htaccess:
Options +FollowSymlinks All -Indexes
RewriteEngine on 
RewriteRule   ^nexi.html$   index.html [L]
ErrorDocument 404 /testing/error.php


Merci pour votre attention
A voir également:

3 réponses

tryan44 Messages postés 1288 Date d'inscription mardi 24 janvier 2012 Statut Membre Dernière intervention 26 octobre 2014 220
30 avril 2012 à 20:18
Salut,

Dans votre rewriting, vous n'indiquez pas le dossier contenant le document.
RewriteRule   ^nexi.html$   /mondossier/index.html [L]


RewriteEngine on
RewriteBase /
 
RewriteRule ^nexi\.html$  /mondossier/index.html [L]


Il me semble aussi qu'il faut supprimer le # dans httpd.conf a la ligne :

#LoadModule rewrite_module modules/mod_rewrite.so 


et idem pour la ligne
#url_rewriter.tags
dans php.ini
0
hassen.dev Messages postés 2 Date d'inscription lundi 30 avril 2012 Statut Membre Dernière intervention 30 avril 2012
30 avril 2012 à 20:34
Merci pour la réponse.
j'ai fait tous mais ça ne marche pas.
je vous signale que quand je tape l'URL http://localhost/testing/nexi.html je suis diriger vers la page http://localhost/testing/index.html donc ça fonctionne, mais quand je tape http://localhost/testing/index.html elle ne se transforme pas en http://localhost/testing/nexi.html

voila mon htaccess après modification:
Options +FollowSymlinks All -Indexes
RewriteEngine on
RewriteBase / 
RewriteRule   ^nexi\.html$   /testing/index.html  [L]
ErrorDocument 404 /testing/erreur.php
0
tryan44 Messages postés 1288 Date d'inscription mardi 24 janvier 2012 Statut Membre Dernière intervention 26 octobre 2014 220
30 avril 2012 à 21:21
Alors la je ne vois pas car chez moi sous Wamp l'url rewriting fonctionne de la façon décrite plus haut.
0