#cd/usr/local/src/
#wget https://codeload.github.com/phpredis/phpredis/zip/develop//Download Source package
#mv Develop Phpredis-develop.zip//modify Name
#unzip Phpredis-develop.zip//Decompression
#cd phpredis-develop/
#/usr/local/php/bin/phpize//Generate Configure File
#./configure--with-php-config=/usr/local/php/bin/php-config
#make
#make Install
Installing Shared extensions:/usr/local/php/lib/php/extensions/no-debug-zts-20131226/
#ls/usr/local/php/lib/php/extensions/no-debug-zts-20131226///Need is redis.so expansion module
Opcache.so redis.so
#/usr/local/php/bin/php-m//view support does not support Redis
#/usr/local/php/bin/php-i |grep Extension_dir//View extension Module storage directory, we can customize the path in php.ini
#vim/usr/local/php/etc/php.ini//Add a line configuration Extension = redis.so, can be placed on the last line of the file
#/usr/local/php/bin/php-m |grep Redis//view already supports Redis expansion module
Redis
/usr/local/src/php-5.6.32/ext/directory has a lot of so-called modules, if you need the module in the/ext directory, you can install in the/ext directory, such as no zip, can be installed directly in the EXT directory
#cd/usr/local/src/php-5.6.32/ext
#ls//See which modules are in the EXT directory
#cd zip/
#/usr/local/php/bin/phpize//Can be compiled and installed directly in the Zip directory
#./configure--with-php-config=/usr/local/php/bin/php-config
#make
#make Install
#ls/usr/local/php/lib/php/extensions/no-debug-zts-20131226/
opcache.so redis.so zip.so//You can see the addition of a zip.so extension module
Extended
Apache Rewrite tutorial http://coffeelet.blog.163.com/blog/static/13515745320115842755199/http://www.cnblogs.com/top5/ Archive/2009/08/12/1544098.html
Apache rewrite appears dead Loop http://ask.apelearn.com/question/1043
PHP error log level reference http://ask.apelearn.com/question/6973
PHP Open Short Tag http://ask.apelearn.com/question/120
PHP.ini detailed http://legolas.blog.51cto.com/2682485/493917
PHP Expansion Module Installation