• cavitieszine

    (@cavitieszine)


    Hey there,
    I’m using the loop to take my posts from wordpress and put them on my website! (http://www.cavitieszine.com/). However, I do not want to use the pre-made blog website that wordpress creates (http://www.cavitieszine.com/wordpress). I just want to use wordpress to help my staff writers be able to upload information to the correct portion of the website with ease. How do I make the /wordpress part of the blog go away?

Viewing 1 replies (of 1 total)
  • bh_WP_fan

    (@bh_wp_fan)

    I’m not sure I understand what you’re looking for, but if you just want to make http://www.cavitieszine.com/wordpress inaccessible, you can put a 404 rewrite in your .htaccess.

    RewriteCond %{HTTP_HOST} ^(www.)?cavitieszine.com$ [NC]
    RewriteCond %{REQUEST_URI} ^/wordpress/(.*)$
    RewriteRule ^(.*)$ - [L,R=404]

    That should cause any attempts to access cavitieszine.com/wordpress to go to a 404 page.

Viewing 1 replies (of 1 total)

The topic ‘Make my blog hidden?’ is closed to new replies.