PHP 500 -Invalid command RewriteEngine的解决

转自:http://blog.csdn.net/wang02011/article/details/8205903

环境:   wampserver-2.1a

系统 :  win8

错误 :  500 -Invalid command RewriteEngine

日志 : [Tue Nov 20 22:52:24 2012] [alert] [client 127.0.0.1] D:/wamp/www/.htaccess: Invalid command ‘RewriteEngine‘, perhaps misspelled or defined by a module not included in the server configuration

解决 :    RewriteEngine命令需要rewrite mod的支持,

打开apache的配置文件httpd.conf ,取消 LoadModule rewrite_module modules/mod_rewrite.so前的注释

时间: 2024-12-28 11:21:25

PHP 500 -Invalid command RewriteEngine的解决的相关文章

apache下/.htaccess: Invalid command 'RewriteEngine'错误信息如何解决。

错误信息. [Wed Nov 05 23:57:10 2014] [alert] [client 127.0.0.1] .../wamp/www/.../.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration. RewriteEngine命令需要rewrite mod的支持,$>cd /etc/apa

python安装locustio报错error: invalid command 'bdist_wheel'的解决方法

locust--scalable user load testing tool writen in Python(是用python写的.规模化.可扩展的测试性能的工具) 安装locustio需要的环境条件是:Python2.6+,但是不支持Python3. 今天在cmd里运行pip install locustio,报错提示:error: invalid command 'bdist_wheel'. 原因:pip和setuptools的版本较低. 解决方案:升级pip和setuptools. 一

Android源码编译:出现zip error: Invalid command arguments解决办法

前段时间出版本编译的时候,偶然间发现了这个问题: zip error: Invalid command arguments (cannot repeat names in zip file) make: *** [out/target/product/k200_hdmiin/system/etc/recovery-resource.dat] Error 16 make: *** Waiting for unfinished jobs.... 背景介绍 博主目前从事AndroidTVBox开发,基

当在一部新的苹果设备安装程序出现the executable was signed with invalid entitlements.问题的解决办法

1.找到设备的identifier 2.进入https://developer.apple.com 3.点击devices 4.把identifier加入并注册 5.打开xcode,按command+, 6.点击你的证书,进入view details 7.刷新即可 当在一部新的苹果设备安装程序出现the executable was signed with invalid entitlements.问题的解决办法,布布扣,bubuko.com

Invalid command 'RewriteLog' - apache2.4版本配置方法变了

以前这么配置: ... RewriteLog logs/gidapp.rewrite_log RewriteLogLevel 3 RewriteEngine On ... LogLevel warn ... 改为: ... RewriteEngine On ... LogLevel warn rewrite:trace3 ... 查看日志: tail -f /usr/local/apache/logs/error_log [Sat Mar 21 08:21:34.518820 2020] [re

python错误 invalid command 'bdist_wheel' & outside environment /usr

按照网上说的执行以下命令 sudo pip install --upgrade setuptools sudo pip install --upgrade pip 结果 Not uninstalling setuptools at /usr/lib/python2.7/dist-packages, outside environment /usr 虽然有下载但更新并不成功应该跟python2/3环境有关执行以下命令 sudo apt-get install python3-pip 解决问题 参考

ruby环境sass编译中文出现Syntax error: Invalid GBK character错误解决方法

sass文件编译时候使用ruby环境,无论是界面化的koala工具还是命令行模式的都无法通过,真是令人烦恼. 容易出现中文注释时候无法编译通过,或者出现乱码,找了几天的解决方法终于解决了. 这个问题的奇葩之处在于在xp环境中没有任何问题,只是在windows7环境中才出现的这个. sass编译时候出现如下错误的解决方法: Syntax error: Invalid GBK character "\xE5" on line 8 of E:\work\sass\sass\_big_box.

lsb_release: command not found 解决方法(转)

问题:通过lsb_release -a 是查看linux系统版本时报错,具体的解决办法如下: [[email protected] ~]# lsb_release -a-bash: lsb_release: command not found 解决方法:yum install redhat-lsb -y 安装完之后再查看版本信息: [[email protected] upload]# lsb_release -aLSB Version: :core-4.0-amd64:core-4.0-noa

关于"implicit declaration of function 'gettimeofday' is invalid in c99"的解决

http://blog.csdn.net/macmini/article/details/10503799 当我们使用 gettimeofday(&time, NULL);时,会出现这样一个WARNING Implicit declaration of function 'gettimeofday' is invalid in C99 而经过搜索之后发现只需加入 #include <sys/time.h> 这个头文件即可 关于"implicit declaration of