Git Product home page Git Product logo

Comments (2)

biast12 avatar biast12 commented on June 6, 2024

ok i figured out how to do it, i just added my index.html file and _h5ai to the opper folder, and then i made a new index.php files

<?php
$requestUri = $_SERVER['REQUEST_URI'];

if ($requestUri === '/' || $requestUri === '/index.html') {
    readfile('index.html');
} elseif (strpos($requestUri, '/<opper folder>') === 0) {
    $h5aiPath = __DIR__ . '/<the original index.php file>.php';
    if (file_exists($h5aiPath)) {
        include $h5aiPath;
    } else {
        http_response_code(404);
        echo 'Not Found';
    }
} else {
    http_response_code(404);
    echo 'Not Found';
}

this loads both the index.html page (and makes it the first to load) and loads h5ai so when you're on https://domain.com does it just load the index.html page and when you're on https://domain.com/<any of the sub folders> does it go to that subfolder

from h5ai.

biast12 avatar biast12 commented on June 6, 2024

nvm it stopped working and started to redirect again :/

from h5ai.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.