Ventoy Forums
dir alias is not working for me - Printable Version

+- Ventoy Forums (https://forums.ventoy.net)
+-- Forum: Ventoy Plugin —— Ventoy 插件 (https://forums.ventoy.net/forumdisplay.php?fid=3)
+--- Forum: Ventoy Plugin Forum (https://forums.ventoy.net/forumdisplay.php?fid=4)
+--- Thread: dir alias is not working for me (/showthread.php?tid=1780)



dir alias is not working for me - plato2021 - 08-19-2021

Am I making a mistake?
I would like my directory "footprint" to show as "Small Footprint for Old Computers".
It shows footprint (no syntax errors).

Am I doing something wrong here?

The code below is in the section of "menu_alias"

Code:
        {
            "dir":"/footprint/",
            "alias":"Small Footprint for Old Computers"
         },



RE: dir alias is not working for me - longpanda - 08-19-2021

Try this
Code:
{
        "dir":"/footprint", <------  Remove the trailing slash
        "alias":"Small Footprint for Old Computers"
},



RE: dir alias is not working for me - plato2021 - 08-19-2021

(08-19-2021, 09:38 AM)longpanda Wrote: Try this
Code:
{
        "dir":"/footprint", <------  Remove the trailing slash
        "alias":"Small Footprint for Old Computers"
},
Thank you very much!!!


RE: dir alias is not working for me - longpanda - 08-19-2021

Solved?