Home  >  Article  >  Backend Development  >  301跳转报错

301跳转报错

WBOY
WBOYOriginal
2016-06-13 12:08:412774browse

301跳转出错
用301跳转把不带www的域名跳转到带www的域名上

appserv服务器,
把这段代码写入.htaccess文件中,服务器会报错

<br />RewriteEngine On<br />RewriteCond %{HTTP_HOST} ^xxx.net [NC]<br />RewriteRule ^(.*)$ http://www.xxx.net/$1 [L,R=301]<br /><br />


报这个错,
500:
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

求解是咋回事呢
------解决思路----------------------
RewriteRule ^(.*)$ http://www.xxx.net/$1 [L,R=301]
应写作
RewriteRule ^(.*)$ http://www.xxx.net/$1 [R=301,L]
------解决思路----------------------
你有开mod_rewrite吗?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn