0

By default, awstats group .php traffics into a single Dynamic PHP Script file number.

However, the site's pattern lies in route=??? after an index.php?, e.g.:

GET /index.php?route=account/login/valid HTTP/1.1
GET /index.php?route=account/logout HTTP/1.1
GET /index.php?route=product/sunglasses/success HTTP/1.1

Is awstats configurable to break down route traffics behind a index.php? If no, any other tools can do the job?

ohho
  • 1,005
  • 8
  • 19
  • 34

1 Answers1

1

Read the manual:

URLWithQuery=[0|1]
0 - URLs are cleaned from the query string (ie: "/mypage.html")
1 - Full URL with query string is used (ie: "/mypage.html?p=x&q=y")

Related are the options URLWithQueryWithoutFollowingParameters and URLWithQueryWithOnlyFollowingParameters which allow you tune which get options are and are not used in grouping hits.

HBruijn
  • 77,029
  • 24
  • 135
  • 201