Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hello, Anybody still looking for a solution to this problem I might have a solution for you. Linkedin bot, https://www.botopedia.org/user-agent-list/social-media-agents/linkedin-bot.html is a Jakarta Commons-HttpClient, therefore if you remove the jakarta block in your code linkedin should work perfectly.

    Your Current Code:

    # 5G:[USER AGENTS]
    <IfModule mod_setenvif.c>
    # SetEnvIfNoCase User-Agent ^$ keep_out
    SetEnvIfNoCase User-Agent (binlar|casper|cmsworldmap|comodo|diavol|dotbot|feedfinder|flicky|ia_archiver|jakarta|kmccrew|nutch|planetwork|purebot|pycurl|skygrid|sucker|turnit|vikspider|zmeu) keep_out
    <limit GET POST PUT>
    Order Allow,Deny
    Allow from all
    Deny from env=keep_out
    </limit>
    </IfModule>

    The revised code:

    # 5G:[USER AGENTS]
    <IfModule mod_setenvif.c>
    # SetEnvIfNoCase User-Agent ^$ keep_out
    SetEnvIfNoCase User-Agent (binlar|casper|cmsworldmap|comodo|diavol|dotbot|feedfinder|flicky|ia_archiver|kmccrew|nutch|planetwork|purebot|pycurl|skygrid|sucker|turnit|vikspider|zmeu) keep_out
    <limit GET POST PUT>
    Order Allow,Deny
    Allow from all
    Deny from env=keep_out
    </limit>
    </IfModule>

    Hope this helps.

    Other version of this in your htacces could be the following
    SetEnvIfNoCase User-Agent “Jakarta Commons” keep_out

    Just comment it out or delete it.

Viewing 1 replies (of 1 total)