Hi Harmanjeet,
The file oxtrust_en.properties is for oxTrust admin UI localization. I'm afraid there is no relation between what you are want to achieve and this file.
Nevertheless here is the procedure to changed this file and deploy without getting 403 error.
- Make a copy of the original war.
```
#cp /opt/gluu/jetty/identity/webapps/identity.war /identity_save.war
```
- Make a directory to work in.
```
#mkdir lab
```
- Copy the original war into lab
```
#cp identity.war lab/
```
- Change directory
```
#cd lab
```
- Extract to original war inside identity folder(the command will create the folder behind the scene).
```
#unzip identity.war -d ./identity
```
- Create a folder named `WEB-INF/classes` in side `lab`.
```
#mkdir -p WEB-INF/classes
```
- Copy `oxtrust_en.properties` from `identity` folder to `WEB-INF/classes` folder
```
#cp identity/WEB-INF/classes/oxtrust_en.properties WEB-INF/classes/oxtrust_en.properties
```
- Remove `identity` folder
```
#rm -rf identity
```
- Update the `oxtrust_en.properties` per your requirement.
- Now copy back the `oxtrust_en.properties` in the original war
```
zip -u identity.war WEB-INF/classes/oxtrust_en.properties
```
- Copy back the updated war in its location
```
cp identity.war /opt/gluu/jetty/identity/webapps/identity.war
```
- Restart the identity service
```
#service identity restart
```
> I want to redirect user to my site rather than Gluu's oxtrust login screen after successfully reset its password.For this one of your staff member suggest changes in oxtrust_en.properties file.
Harmanjeet, please can you share the link where this conversation took place.
Thanks!