-1

Take this link for example: http://example.com/p/12345

The 12345 part of the URL is a variable.

It should display like ?something=12345 but it doesnt so they are obviously using url rules/rematch. How do I view what the URL would be without the rules?

For example it might be something like http://example.com/p?number=12345

bob jomes
  • 271
  • 1
  • 4
  • 13

1 Answers1

1

In a word, you can't. Unless you operate the web site and have access to the .htaccess file that is rewriting the URLs you can not determine exactly where it is being redirected.

In your example both the p and the 12345 could be variable.

Dave
  • 5,108
  • 16
  • 30
  • 40