PHP için bootstrap ve regex Yardım

0 Cevap php

I am working on a new PHP framework for personal use in future projects, and below is my planned file structure so far. I just need some help with some regex for my .htaccess file and some help for how I can load the files I want.

Basically, any "folder" after the domain should load from my "module" folder. I would like to have it load www.domain.com/account/ from www.domain.com/module/account/. I also want it in that format for any other folder I have under modules. All folders/files under "module" should load as if it were in the top level.

Bu örnekte olsa benim modül / hesap / klasöründe ben home.php adında bir dosya varsa, o zaman ben www.domain.com/account/home yerine www.domain.com/module/account/home.php in ile erişmek mümkün olmalıdır, ve {[ (2)]} aslında www.domain.com/user/register tarafından erişilebilir olacak

Bu mantıklı umut ve herhangi bir yardım ve herhangi bir tavsiye ederiz. Ben esas olarak bu klasör yapısı işi yapmak için. Htaccess dosyası ile yardıma ihtiyacım var. Tüm dosyaları tek bir dizin dosyası olsa ya da ben sadece her sayfada bir önyükleme türü dosyasını içermelidir eğer erişilebilir olmalıdır eğer ben karar vermedim. Önyükleme dosyası tüm değişkenleri, yapılandırma seçenekleri, yanı sıra oto yükü tüm sınıf dosyaları kurmak ve gerekli nesneleri yaratacaktır.

myFramework/
--/assets/
--------/css/
--------/images/
--------/javascript/
--/includes/
---------/classes/
---------/config/
---------/language/
---------/header.php
---------/footer.php
--/module/
--------/account/
----------------/create.php
----------------/login.php
----------------/logout.php
----------------/settings.php
----------------/editprofile.php
--------/admin/
--------/blog/
--------/forums/
--------/messages/
--------/users/
--index.php

0 Cevap