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

301跳转出错

WBOY
WBOYOriginal
2016-06-23 13:46:561155browse

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

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

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


报这个错,
500:
Internal Server Error

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

求解是咋回事呢


回复讨论(解决方案)

RewriteEngine OnRewriteCond %{HTTP_HOST} ^xxx\.net [NC]RewriteRule ^(.*)$ http://www.xxx.net/$1 [L,R=301]

RewriteEngine OnRewriteCond %{HTTP_HOST} ^xxx\.net [NC]RewriteRule ^(.*)$ http://www.xxx.net/$1 [L,R=301]



用这个还是一样出现500错误,和之前的错误一样

RewriteRule ^(.*)$ http://www.xxx.net/$1 [L,R=301]
应写作
RewriteRule ^(.*)$ http://www.xxx.net/$1 [R=301,L]

RewriteRule ^(.*)$ http://www.xxx.net/$1 [L,R=301]
应写作
RewriteRule ^(.*)$ http://www.xxx.net/$1 [R=301,L]



还是报500错误,真是奇怪了

你有开mod_rewrite吗?

sudo a2enmod rewrite

你有开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