我做了一个简单的规则,当用户转到 login.php 时将用户重定向到虚拟目录 login / ,并将用户重定向到虚拟目录 register / 当他们去 register.php 时。 但是在将 .htaccess 文件放入目录后,它抛出了这个错误: -
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
这是 .htaccess
#ErrorDocument 404 /
RewriteEngine On
#RewriteCond %{SERVER_PORT} 80
RewriteRule ^login/?$ login.php
RewriteRule ^register/?$ register.php
我在这里做错了什么? 我正在运行WAMP服务器。
Apache错误日志
[Sat Nov 16 02:56:29.603789 2013] [core:alert] [pid 5972:tid 1592] [client ::1:55562] C:/wamp/www/m/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
感谢任何帮助。 感谢。