Please help me How to customize sngine home page

Hello freecodecamp.org! I come from Vietnam.

I have 1 question:
I am using sngine v3.11
(Because I’m using xampp, I don’t have an example to show you)
My homepage is: localhost/sngine
My blog site is: localhost/sngine/blogs

I want my Home page to be: localhost/sngine/blogs

I want when I go to Home page: localhost/sngine, the interface of localhost/sngine/blogs will appear immediately without the link: /blog

I will be extremely happy to do this.

Thank you for helping me!

To set your homepage in Sngine v3.11 to localhost/sngine/blogs instead of localhost/sngine, you’ll need to adjust the default routing or homepage settings in the Sngine admin panel. Look for options related to site configuration or URL settings. It should allow you to specify the default landing page URL.

Hello nguyenvan99! Thanks to you, I did it successfully.

I’m very happy that you were enthusiastic about helping me.

I wish you happiness!

I have 1 FINAL problem and I hope nguyenvan99 can help:

By default, blog posts do not have a cover image

I want to use the article image as my profile picture

or

Mandatory Force users to upload images when posting (because upload does not have a mandatory function)
Attach files 2

nguyenvan99 can you help me again

I am so grateful to you!!

Hope good things will come to you!!

<div class="row form-group">
                <label class="col-md-2 form-label">
                  {__("Cover")}
                </label>
                <div class="col-md-10">
                  <div class="x-image">
                    <button type="button" class="btn-close x-hidden js_x-image-remover" title='{__("Remove")}'>

                    </button>
                    <div class="x-image-loader">
                      <div class="progress x-progress">
                        <div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
                      </div>
                    </div>
                    <i class="fa fa-camera fa-lg js_x-uploader" data-handle="x-image"></i>
                    <input type="hidden" class="js_x-image-input" name="cover">
					
					
                  </div>
                </div>
              </div>

<script>
  /* share post */
  $('input[type=radio][name=publish_to]').on('change', function() {
    switch ($(this).val()) {
      case 'timeline':
        $('#js_publish-to-page').hide();
        $('#js_publish-to-group').hide();
        $('#js_publish-to-event').hide();
        $('#js_tips-enabled').fadeIn();
        break;
      case 'page':
        $('#js_publish-to-page').fadeIn();
        $('#js_publish-to-group').hide();
        $('#js_publish-to-event').hide();
        $('#js_tips-enabled').hide();
        break;
      case 'group':
        $('#js_publish-to-page').hide();
        $('#js_publish-to-group').fadeIn();
        $('#js_publish-to-event').hide();
        $('#js_tips-enabled').fadeIn();
        break;
      case 'event':
        $('#js_publish-to-page').hide();
        $('#js_publish-to-group').hide();
        $('#js_publish-to-event').fadeIn();
        $('#js_tips-enabled').fadeIn();
        break;
    }
  });
</script>