Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Sabrina Morgan

    (@sabrinamorgan)

    Got it working! Here’s the code, in case anyone else runs into this issue:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    
    # prevent looping
    RewriteCond %{HTTP_HOST} !^m.mysite.com$
    
    # if the browser accepts these mime-types, it's definitely mobile, or pretending to be
    RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC,OR]
    
    # a bunch of user agent tests
    RewriteCond %{HTTP_USER_AGENT} "sony|symbian|nokia|samsung|mobile|windows ce|epoc|opera" [NC,OR]
    RewriteCond %{HTTP_USER_AGENT} "mini|nitro|j2me|midp-|cldc-|netfront|mot|up\.browser|up\.link|audiovox"[NC,OR]
    RewriteCond %{HTTP_USER_AGENT} "blackberry|ericsson,|panasonic|philips|sanyo|sharp|sie-"[NC,OR]
    RewriteCond %{HTTP_USER_AGENT} "portalmmm|blazer|avantgo|danger|palm|series60|palmsource|pocketpc"[NC,OR]
    RewriteCond %{HTTP_USER_AGENT} "smartphone|rover|ipaq|au-mic,|alcatel|ericy|vodafone\/|wap1\.|wap2\.|iPhone|android"[NC]
    
    # rewrite rules here
    RewriteRule ^(.+)\$ https://m.mysite.com/$1 [R=302,NC]

    I just checked the Dreamhost forum, and as of a couple of weeks ago, the All in One SEO Pack plugin is allowed (but may be disabled if it adversely affects the server).

    Personally, I’ve had mixed results with it – sometimes it did seem to do more harm than good (especially on established blogs) and sometimes it saved a lot of time. Right now I’m having issues with the latest version and WP 3.0, but that’s for another thread…

    I’m having the same problem, using the Mallow theme. Any ideas as to what’s going on?

Viewing 3 replies - 1 through 3 (of 3 total)