What is the proper way to have user profiles like facebook.com/USERNAMEHERE? I'm currently using domain.com/users.html?USERNAMEHERE










0















I'm looking to have URLs for each username. However, the only way I've figured out how to do this is by using search queries (? question marks). For example, in Node.js I am getting the 'location.search' tag, which returns whatever is after the '?' in www.domain.com/users.html?USERNAME. However, I would like to have it where I can use www.domain.com/users/USERNAME.



I am using Firebase and Node.js










share|improve this question


























    0















    I'm looking to have URLs for each username. However, the only way I've figured out how to do this is by using search queries (? question marks). For example, in Node.js I am getting the 'location.search' tag, which returns whatever is after the '?' in www.domain.com/users.html?USERNAME. However, I would like to have it where I can use www.domain.com/users/USERNAME.



    I am using Firebase and Node.js










    share|improve this question
























      0












      0








      0








      I'm looking to have URLs for each username. However, the only way I've figured out how to do this is by using search queries (? question marks). For example, in Node.js I am getting the 'location.search' tag, which returns whatever is after the '?' in www.domain.com/users.html?USERNAME. However, I would like to have it where I can use www.domain.com/users/USERNAME.



      I am using Firebase and Node.js










      share|improve this question














      I'm looking to have URLs for each username. However, the only way I've figured out how to do this is by using search queries (? question marks). For example, in Node.js I am getting the 'location.search' tag, which returns whatever is after the '?' in www.domain.com/users.html?USERNAME. However, I would like to have it where I can use www.domain.com/users/USERNAME.



      I am using Firebase and Node.js







      javascript node.js firebase url






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 15 '18 at 4:10









      Paul ThomasPaul Thomas

      104




      104






















          1 Answer
          1






          active

          oldest

          votes


















          1














          It depends on how you are generating the content.



          A couple of methods that come to mind:



          • getting the username from the URL in a node.js

          • using rewrites in firebase hosting

          Method 1:



          If you are using some kind of server-side rendering, you can just get the username from the URL and dynamically serve the content. Express example:



          app.get('/user/:username', function(req , res)
          res.send("This is the profile for: " + req.params.username);
          );



          Method 2:



          If you serve the same HTML file for every user and populate it with user data on the client, you can use rewrites in your firebase hosting config:




          "hosting":
          "rewrites": [

          "source": "/user/*",
          "destination": "/user/index.html"

          ]




          This rewrites domain.com/user/username/ to domain.com/user/index.html.



          Note: It does not rewrite domain.com/user/username/otherpage/. To do that you will need to add the rewrite:




          "source": "/user/*/otherpage/",
          "destination": "/path/to/otherpage/"



          Note: If you use this method look out for 404 errors if you reference resources using relative paths. For example imagine this was a HTML file in /user/:



          <!-- inside of /user/index.html -->
          <script src="javascript.js"></script>


          This path will be /users/username/javascript.js and may return index.html, which is a problem. To fix this, use an absolute path:



          <!-- inside of /user/index.html -->
          <script src="/user/javascript.js"></script>





          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53312314%2fwhat-is-the-proper-way-to-have-user-profiles-like-facebook-com-usernamehere-im%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            It depends on how you are generating the content.



            A couple of methods that come to mind:



            • getting the username from the URL in a node.js

            • using rewrites in firebase hosting

            Method 1:



            If you are using some kind of server-side rendering, you can just get the username from the URL and dynamically serve the content. Express example:



            app.get('/user/:username', function(req , res)
            res.send("This is the profile for: " + req.params.username);
            );



            Method 2:



            If you serve the same HTML file for every user and populate it with user data on the client, you can use rewrites in your firebase hosting config:




            "hosting":
            "rewrites": [

            "source": "/user/*",
            "destination": "/user/index.html"

            ]




            This rewrites domain.com/user/username/ to domain.com/user/index.html.



            Note: It does not rewrite domain.com/user/username/otherpage/. To do that you will need to add the rewrite:




            "source": "/user/*/otherpage/",
            "destination": "/path/to/otherpage/"



            Note: If you use this method look out for 404 errors if you reference resources using relative paths. For example imagine this was a HTML file in /user/:



            <!-- inside of /user/index.html -->
            <script src="javascript.js"></script>


            This path will be /users/username/javascript.js and may return index.html, which is a problem. To fix this, use an absolute path:



            <!-- inside of /user/index.html -->
            <script src="/user/javascript.js"></script>





            share|improve this answer



























              1














              It depends on how you are generating the content.



              A couple of methods that come to mind:



              • getting the username from the URL in a node.js

              • using rewrites in firebase hosting

              Method 1:



              If you are using some kind of server-side rendering, you can just get the username from the URL and dynamically serve the content. Express example:



              app.get('/user/:username', function(req , res)
              res.send("This is the profile for: " + req.params.username);
              );



              Method 2:



              If you serve the same HTML file for every user and populate it with user data on the client, you can use rewrites in your firebase hosting config:




              "hosting":
              "rewrites": [

              "source": "/user/*",
              "destination": "/user/index.html"

              ]




              This rewrites domain.com/user/username/ to domain.com/user/index.html.



              Note: It does not rewrite domain.com/user/username/otherpage/. To do that you will need to add the rewrite:




              "source": "/user/*/otherpage/",
              "destination": "/path/to/otherpage/"



              Note: If you use this method look out for 404 errors if you reference resources using relative paths. For example imagine this was a HTML file in /user/:



              <!-- inside of /user/index.html -->
              <script src="javascript.js"></script>


              This path will be /users/username/javascript.js and may return index.html, which is a problem. To fix this, use an absolute path:



              <!-- inside of /user/index.html -->
              <script src="/user/javascript.js"></script>





              share|improve this answer

























                1












                1








                1







                It depends on how you are generating the content.



                A couple of methods that come to mind:



                • getting the username from the URL in a node.js

                • using rewrites in firebase hosting

                Method 1:



                If you are using some kind of server-side rendering, you can just get the username from the URL and dynamically serve the content. Express example:



                app.get('/user/:username', function(req , res)
                res.send("This is the profile for: " + req.params.username);
                );



                Method 2:



                If you serve the same HTML file for every user and populate it with user data on the client, you can use rewrites in your firebase hosting config:




                "hosting":
                "rewrites": [

                "source": "/user/*",
                "destination": "/user/index.html"

                ]




                This rewrites domain.com/user/username/ to domain.com/user/index.html.



                Note: It does not rewrite domain.com/user/username/otherpage/. To do that you will need to add the rewrite:




                "source": "/user/*/otherpage/",
                "destination": "/path/to/otherpage/"



                Note: If you use this method look out for 404 errors if you reference resources using relative paths. For example imagine this was a HTML file in /user/:



                <!-- inside of /user/index.html -->
                <script src="javascript.js"></script>


                This path will be /users/username/javascript.js and may return index.html, which is a problem. To fix this, use an absolute path:



                <!-- inside of /user/index.html -->
                <script src="/user/javascript.js"></script>





                share|improve this answer













                It depends on how you are generating the content.



                A couple of methods that come to mind:



                • getting the username from the URL in a node.js

                • using rewrites in firebase hosting

                Method 1:



                If you are using some kind of server-side rendering, you can just get the username from the URL and dynamically serve the content. Express example:



                app.get('/user/:username', function(req , res)
                res.send("This is the profile for: " + req.params.username);
                );



                Method 2:



                If you serve the same HTML file for every user and populate it with user data on the client, you can use rewrites in your firebase hosting config:




                "hosting":
                "rewrites": [

                "source": "/user/*",
                "destination": "/user/index.html"

                ]




                This rewrites domain.com/user/username/ to domain.com/user/index.html.



                Note: It does not rewrite domain.com/user/username/otherpage/. To do that you will need to add the rewrite:




                "source": "/user/*/otherpage/",
                "destination": "/path/to/otherpage/"



                Note: If you use this method look out for 404 errors if you reference resources using relative paths. For example imagine this was a HTML file in /user/:



                <!-- inside of /user/index.html -->
                <script src="javascript.js"></script>


                This path will be /users/username/javascript.js and may return index.html, which is a problem. To fix this, use an absolute path:



                <!-- inside of /user/index.html -->
                <script src="/user/javascript.js"></script>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 15 '18 at 12:13









                CampbellCampbell

                213




                213





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53312314%2fwhat-is-the-proper-way-to-have-user-profiles-like-facebook-com-usernamehere-im%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3