APMServ5.2.6开启伪静态教程,让网站支持.htaccess

一般来说都是本地测试,所以直接修改 \APMServ5.2.6\Apache\conf\httpd.conf 这个文件,找到:

#APMServ默认虚拟主机
NameVirtualHost *:80
<VirtualHost *:80>
ServerName *
DocumentRoot “D:/APMServ/www/htdocs”
<Directory “D:/APMServ/www/htdocs”>
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex index.html index.htm default.htm index.php
default.php index.cgi default.cgi index.pl default.pl index.shtml
AllowOverride None
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>

 

把AllowOverride None修改成AllowOverride All

然后重启Apache即可(记得要自己修改网站的.htaccess文件)

 

如果你添加过虚拟主机,那么 还需要修改APMServ5.2.6\Apache\conf\apmserv\vhost.conf这个文件。

发表评论

邮箱地址不会被公开。 必填项已用*标注