20 lines
324 B
Go
20 lines
324 B
Go
package utils
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/aerogo/aero"
|
|
)
|
|
|
|
// SmartRedirect automatically adds the /_ prefix to the URI if required.
|
|
func SmartRedirect(ctx *aero.Context, uri string) string {
|
|
// Redirect
|
|
prefix := ""
|
|
|
|
if strings.HasPrefix(ctx.URI(), "/_") {
|
|
prefix = "/_"
|
|
}
|
|
|
|
return ctx.Redirect(prefix + uri)
|
|
}
|