Schritte zum Aktivieren von pseudostatischem Apache:
Öffnen Sie die Apache-Konfigurationsdatei httpd.conf, Pfad: wampbinapacheapache2.4.9confhttpd.conf
Suchen Sie
#LoadModule rewrite_module modules/mod_rewrite.so
und entfernen Sie das # davor. Wenn nicht, fügen Sie es hinzu, aber es muss eine exklusive Zeile sein, damit Apache das Modul mod_rewrite unterstützt
Finden Sie
<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>
Ersetzen Sie AllowOverride None durch AllowOverride All. Stellen Sie sicher, dass Apache die .htaccess-Datei unterstützt
Apache-Server neu starten
Erstellen Sie eine .htaccess-Datei im Stammverzeichnis des PHP-Projekts, in dem Pseudostatik aktiviert werden soll
Weitere technische Artikel zu Apache finden Sie unter Apache-Tutorial Spalte zum Lernen!
Das obige ist der detaillierte Inhalt vonSo aktivieren Sie Pseudostatik in Apache. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!