301跳转出错

WBOY
Release: 2016-06-23 13:46:56
Original
1171 people have browsed it

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

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

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


报这个错,
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]
Copy after login
Copy after login

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



用这个还是一样出现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吗?


好了,原来是这个没开启,感谢大家
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!