Maison > Questions et réponses > le corps du texte
Apache configure la réécriture pour masquer le fichier index.php de thinkphp
J'ai activé le module de réécriture
Listen 8888
<Directory />
AllowOverride all
Require all denied
</Directory>
<Directory "E:/wamp64/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.4/mod/core.html#options
# for more information.
#
Options All
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - don't remove
Require local
</Directory>
<VirtualHost *:8888>
#配置访问跟目录
DocumentRoot "e:/wamp64/www/golorryService"
ServerName http://127.0.0.1:8888
</VirtualHost>
Qu'est-ce qui ne va pas ?
PHP中文网2017-05-24 11:35:27
Merci pour l'invitation !
Cacher index.php, vous devez configurer le fichier .htaccess sous votre e:/wamp64/www/golorryService
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/ [QSA,PT,L]
Et vous devez confirmer si le httpd.conf de votre Apache (sous le répertoire apache/conf) charge le module mod_rewrite.so
LoadModule rewrite_module modules/mod_rewrite.so
phpcn_u15822017-05-24 11:35:27
Vous pouvez vous référer à cet article pour certaines configurations d'Apache