301跳转报错

WBOY
Release: 2016-06-13 12:08:41
Original
2779 people have browsed it

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 />
Copy after login


报这个错,
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吗?

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!