.htaccess文件的写法,在重定向中很有作用

#SetEnv APPLICATION_ENV production

SetEnv APPLICATION_ENV development

 

# php setting

<IfModule php5_module>

 

    # Make sure the default timezone is set

    # Can also be set within application using date_default_timezone_set

    # ....

    # =====================================

    php_value date.timezone "Asia/Shanghai"

 

 

    # Default charset is utf-8 because of multi languages supportting

    # ...... utf-8

    # ===============================

    php_value default_charset "utf-8"

 

 

    # Disable magic quotes which means nothing in php6

    # .........

    # ===========================

    php_flag magic_quotes_gpc on

 

 

    # Disable automatic session start but handled by program

    # e.g. Zend_Session::start()

    # .. session ............... Zend_Session::start()

    # =============================

    php_flag session.auto_start off

 

 

    # Turn off compatibility with PHP4

    # To avoid the problem when dealing with objects

    # .... (php4) ...............

    # ======================================

    php_flag zend.ze1_compatibility_mode off

 

 

    # Gzip output

    # Gzip ....

    # =======================================

    php_flag zlib.output_compression off

    php_value zlib.output_compression_level 9

 

 

    # Disable user agent verification to not break multiple image upload

    # .......................

    # ==================================

    php_flag suhosin.session.cryptua off

 

 

    # Output buffering

    # ....

    # =============================

    php_value output_buffering 4096

 

</IfModule>

 

 

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -s [OR]

RewriteCond %{REQUEST_FILENAME} -l [OR]

RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

RewriteRule ^.*$ index.php [NC,L]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值