gpt4 book ai didi

javascript - angular js 使用 codeigniter 作为辅助框架删除 # 标签

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:39:55 24 4
gpt4 key购买 nike

我在 angularjs 中使用了 codeigniter 我们的二级框架。从 url 和 seo 友好网站中删除# 符号的最佳方法是什么。提前致谢。

最佳答案

在 angularjs 中使用位置提供程序并更改 css 和 js 的基本 href:

angular.module('scotchy', [])

.config(function($routeProvider, $locationProvider) {

$routeProvider
.when('/', {
templateUrl : 'partials/home.html',
controller : mainController
})
.when('/about', {
templateUrl : 'partials/about.html',
controller : mainController
})
.when('/contact', {
templateUrl : 'partials/contact.html',
controller : mainController
});

// use the HTML5 History API
$locationProvider.html5Mode(true);
});

For more details about removing has tag

在application/config/routes.php中添加以下内容来防止CI 404

$route[''] = "";

$route['about'] = "";

$route['contact'] = "";

快乐编码:)

关于javascript - angular js 使用 codeigniter 作为辅助框架删除 # 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39570933/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com