in apache I guess i could do something like .htaccess Access Control option.
For eg:
SetEnvIf User-Agent BadBot GoAway=1
Order allow,deny
Allow from all
Deny from env=GoAway
but how to block mobile (iOS / Android) access to a single CMS page in magento????
Observe the
cms_controller_router_match_beforeevent from the CMS router’s match method and check the user agent header in the observer method. Possibly, refer to this SO post.