View on GitHub
Types of site URLs
There are two types of URLs, one which is always the same and the other which keeps changing
On this page
Full Path
This option should be selected when the URL of your web page is always the same. like this.
https://example.in/example-1.html
https://example.in/insert/entry/
location.pathname
This option should be selected when the hostname of your web page is changing. like this.
Webpage URL | When you select this option, it will be converted. |
---|---|
http://example.in/site/example-1.html | /site/example-1.html |
https://example.in/insert/entry/ | /insert/entry |
location.hostname
This option should be selected when the URL of your web page is always changing. like this.
https://example.in/example-1.html?id={random_number}
https://example.in/insert/entry/{random_string}
Webpage URL | When you select this option, it will be converted. |
---|---|
https://example.in/example-1.html?id={random_number} | example.in |
https://example.com/insert/entry/{random_string} | example.com |
If you know Javascript Language, then you can understand it easily.