By default, ui-router encodes the slash / inside parameters. If you want to send a path in the URL, you need to define a custom parameter type.
Define:
module.config(['$urlMatcherFactoryProvider', function($urlMatcherFactory) {
$urlMatcherFactory.type('path', {
decode: function(val) { retu...