首先打开配置文件httpd-vhosts-conf,然后修改网站根目录到public文件夹
<VirtualHost *:80>
ServerName tp5.com
ServerAlias tp5.com
DocumentRoot "D:/wamp64/www/tp5/public/"
<Directory "D:/wamp64/www/tp5/public/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
然后修改thinkphp框架里面public文件夹下的的.htaccess文件,将原始代码:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
————————————————
修改为如下:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
其实就增加了一个字符,在倒数第二行的index.php后面加了个?,即可实现网站入口文件的修改。
版权属于:小小窝/禾下月
本文链接:https://hxyxyz.top/index.php/%E6%8A%80%E6%9C%AF/73.html
本站文章采用 知识共享署名4.0 国际许可协议 进行许可,请在转载时注明出处及本声明!