我想将非www重定向到www网址,其工作正常除了
http://wellnessvisit.com/blog/
我想将其重定向到
http://www.wellnessvisit.com/blog/
虽然它在所有其他网址上工作正常,但不适用于此
下面的是我的'use strict';
angular
.module('angularQuizApp', [
'ngAnimate',
'ngCookies',
'ngResource',
'ngRoute',
'ngSanitize',
'ngTouch'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
})
.when('/about', {
templateUrl: 'views/about.html',
controller: 'AboutCtrl'
})
[...]
文件
module.exports = function (req, res, next)
{
//If not logged and sails launch is dev mode, we automatically log user
if (!req.session.authenticated && sails.config.environment == "development")
{
//Do whatever you want to log my user and put it in session
req.session.authenticated = true;
}
return next();
};
答案 0 :(得分:0)
当我点击http://wellnessvisit.com/blog/时,它会将我重定向到http://www.wellnessvisit.com/blog/。所以htaccess规则似乎运行正常。
您遇到的问题可能是由于缓存重定向,请在其他浏览器中尝试上述链接或尝试清除浏览器的缓存。