But it doesn’t show up on my desired address (http://localhost/cis).
When check it on my browser developer tools > Network tab, It seems the base address (/cis) found (with 200 Ok), but other resources still looking for this address (for example)(http://localhost/css/site.css)
Which missing /cis base address!
Where is the problem and how to solve problem?
When your app is accessed via /cis, the application is still generating URLs relative to the root path (/) rather than to your desired base path (/cis). This is why resources like CSS files are being requested from /css/site.css instead of /cis/css/site.css.
Thanks for reply.
No, How to set base path to blazor?
If i set basePath to my desired, So this is cause some limitation when transfer to another server or rename the url, right?