rbxb / place

a clone of r/place
GNU General Public License v3.0
84 stars 61 forks source link

Renaming .../ace to something else #13

Closed ghost closed 1 year ago

ghost commented 1 year ago

Ok so I finally setup my place on the localhost and I saw that the url to the main page is localhost:8080/ace, so I don't like the ace at the end of the url, is it possible to rename it to something else? Thanks.

rbxb commented 1 year ago

Yes. In web/root/_filters.txt. Currently it says:

#serve ace desktop.html

So when someone goes to the path ace it will serve the file named desktop.html. You can change ace to be whatever you want.

You should also change web/_filters.txt so that entering no path redirects you to whatever you chose. Currently it says:

#redirect * ./ace

which redirects localhost:8080 to localhost:8080/ace

ghost commented 1 year ago

Yes. In web/root/_filters.txt. Currently it says:

#serve ace desktop.html

So when someone goes to the path ace it will serve the file named desktop.html. You can change ace to be whatever you want.

You should also change web/_filters.txt so that entering no path redirects you to whatever you chose. Currently it says:

#redirect * ./ace

which redirects localhost:8080 to localhost:8080/ace

Ok thanks