I’m using WordPress and different theme for mobile & desktop. FastCGI cache storing only one version. Sometimes it showing desktop version on mobile and sometimes mobile version on desktop.
My question
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
if ( $http_user_agent ~* '([^-]+)Android' ) {
#yourcode here
}
if ( $http_user_agent ~* '([^-]+)iPhone' ) {
#yourcode here
}