PogMC Developments
  • PogMC Developments
  • Plugins
    • UltraCollections
      • Features
      • Understanding the config
      • Commands & Permissions
      • How the GUI system works
      • How to create a category
      • How to create a collection
      • How to create a reward GUI
      • Developer API
  • Websites
    • BlockBase
      • Getting Started
      • Changing Branding
      • Editing Pages
      • Theming
      • 404 Error
Powered by GitBook
On this page
  1. Websites
  2. BlockBase

404 Error

If you get a 404 Error when clicking on buttons that lead to /vote, /staff...etc, here's what to do:

  1. Open your web host's public_html directory

  2. Create or edit the existing .htaccess file

  3. Paste this in:

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.html [L]
</IfModule>
PreviousTheming

Last updated 7 months ago