Étapes pour activer Apache pseudo-statique :
Ouvrez le fichier de configuration d'Apache httpd.conf, chemin : wampbinapacheapache2.4.9confhttpd.conf
Trouvez
#LoadModule rewrite_module modules/mod_rewrite.so
et supprimez le # devant. Sinon, ajoutez-le, mais ce doit être une ligne exclusive pour qu'Apache prenne en charge le module mod_rewrite
Trouver
<Directory "D:/ApacheServer/web"> # # 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 None # # Controls who can get stuff from this server. # Order allow,deny Allow from all </Directory>
Remplacer AllowOverride None par AllowOverride All Faire en sorte qu'Apache prenne en charge le fichier .htaccess
Redémarrez le serveur Apache
Créez un fichier .htaccess dans le répertoire racine du projet PHP où le pseudo-statique doit être activé
Pour plus d'articles techniques liés à Apache, veuillez visiter le Colonne Tutorial Apache pour apprendre !
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!