2013年3月22日 星期五

CodeIgniter 移除網址的index.php


1.打開Apache  的httpd.conf
   搜尋 LoadModule找到下面這行
   #LoadModule rewrite_module modules/mod_rewrite.so
   將前面的#字號去除後存檔
2.restart Apache

3.將CodeIgniter資料夾下的.htaccess檔用筆記本打開修改內容
RewriteEngine on
RewriteCond $1 !^(index\.php)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
4. 修改 \application\config\cofig.php
   搜尋 $config['index_page'] = 'index';
   去除預設值得index變成下面這樣
   $config['index_page'] = '';

原文出處:
http://rex030515495.blogspot.tw/2011/03/codeigniter-indexphp.html

2013年3月19日 星期二

Appserv開啟ldap問題解決

一、到windows資料夾中修改php.ini,將ldap的ext前面的注解拿掉即可!
二、在c:\appserv\php5資料夾中的libeay32.dll跟ssleay32.dll複蓋到c:\windows\system32中
三、重新啓動Apache....