APMServ對於做基於LAMP的開發有很大的幫助,該軟件已在以前介紹過,參看《如何快速搭建本地LAMP/LNMP平台》。因為今天要做公司官網《廣州網站建設》,需要APMServ支持偽靜態,而APMServ默認是不支持偽靜態的,需要以下的設置才成功。
點擊軟件的【apache設置】-【修改配置文件】。找到以下這一段:
NameVirtualHost *:80
ServerName *
DocumentRoot "D:/APMServ5.2.6/APMServ5.2.6/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
把其中的“AllowOverride None ”注釋掉,換成以下內容:
AllowOverride options fileinfo
再重啟一次服務即可。