Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> 關於服務器 >> 讓自己的本地APACHE服務器支持.htaccess

讓自己的本地APACHE服務器支持.htaccess

日期:2017/2/8 10:20:53      編輯:關於服務器

如何讓自己的本地APACHE服務器支持”.htaccess”呢?其實只要簡單修改一下apache的httpd.conf設置就可以讓APACHE支持.htaccess了,來看看操作

  打開httpd.conf文件(在那裡? APACHE目錄的CONF目錄裡面),用文本編輯器打開後,查找

<Directory />
  Options FollowSymLinks
  AllowOverride None
</Directory>
  改為

<Directory />
  Options FollowSymLinks
  AllowOverride All
</Directory>
  就可以了

Copyright © Windows教程網 All Rights Reserved