apache + phpStudy 配置vue history模式
1、将打包的dist文件放到 D:\phpStudy\PHPTutorial\WWW 这个文件夹下2、在dist文件夹中放入.htaccess文件,意思大概是将所有文件都指向index.html文件,文件内容如下: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase
1、将打包的dist文件放到 D:\phpStudy\PHPTutorial\WWW 这个文件夹下
2、在dist文件夹中放入.htaccess文件,意思大概是将所有文件都指向index.html文件,文件内容如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
3、打开配置文件 vhosts-nii,输入如下内容
<VirtualHost _default_:80>
DocumentRoot "D:\phpStudy\PHPTutorial\WWW\dist"
<Directory "D:\phpStudy\PHPTutorial\WWW\dist">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
完成,浏览器中输入: localhost
更多推荐
所有评论(0)