使用phpstudy设置网站301重定向
一、修改httpd-conf文件
在phpStudy>Apache>conf下面的httpd.conf文件
搜索 #LoadModule rewrite_module modules/mod_rewrite.so
然后删除前面的#
如图:
二、.htaccess文件内容
rewriteEngine on
rewriteCond %{http_host} ^haishenzhishi.com [NC]
rewriteRule ^(.*)$ http://www.haishenzhishi.com/$1 [R=301,L]
直接创建.htaccess文件是不行的,会有提示,可以用文本ling另存为,如图: