0

ユーザーを正しく認証するログイン ページがありますが、次に開くファイルが見つからないという問題があります。

私のファイルは次のとおりです

  **Plugin Root directory**
     |                  |
     myindex_2343.php   | 
                        **MyClasses directory**
                          |               |
                          Login_2343.php  Member_2343.php

Login_2343.php

<form name="mylogin" action="" method="post">
     .....
</form>
<?php
       if(isset($_POST['username']))
       {
            Authentication code goes here
            if(Authenticate)
            {
              echo '<script type="text/javascript">window.location.href="MyClasses 
              /Member_2343.php";</script>';
             }
        }
  ?>

エラーメッセージは次のとおりです。

   The requested URL /wordpress/wp-admin/MyClasses/Member_2343.php was not 
   found on this server.
4

1 に答える 1

0

プラグインのルートを window.location.href に追加します

<form name="mylogin" action="" method="post">
     .....
</form>
<?php
       if(isset($_POST['username']))
       {
            Authentication code goes here
            if(Authenticate)
            {
              echo '<script type="text/javascript">window.location.href="/pluginroot/MyClasses 
              /Member_2343.php";</script>';
             }
        }
  ?>
于 2013-02-15T08:57:57.817 に答える