Prefix or suffix is irrelevant, it's only about adding some entropy and length to the password.
You should consider those three things:
- The salt has to be different for every password you store. (This is quite a common misunderstanding.)
- Use a cryptographically secure random number generator.
- Choose a long enough salt. Think about the birthday problem.
There's an excellent answer by Dave Sherohman to another question why you should use randomly generated salts instead of a user's name (or other personal data). If you follow those suggestions, it really doesn't matter where you put your salt in.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…