在特定网址上重定向网址

时间:2018-07-07 04:55:48

标签: javascript php .htaccess codeigniter

我在codeigniter中有一些像https://www.example.com/newsfeed/show的URL,并且必须在控制器之前像https://www.example.com/new/newsfeed/show生成一些特定的URL,而无需更改基本URL。

1 个答案:

答案 0 :(得分:0)

新网址可以通过以下方式获取:

var newUrl = location.protocol + '//' + location.host + '/new/'+ location.pathname

这将为您提供所需的URL