,以阻止訪問文件,我已經像子頁如何通過URL
mypage.com/subpage
不過,這只是別名,所有文件都在/data/subpage
。並且僅在需要的文件被用戶訪問自己的index.php
和所有其他文件由指數本身的進口,根據屬性(GET,會議等)
我想這一點:
- 讓用戶去訪問
index.php
使用/subpage
但不/data/subpage
- 不要讓用戶在
/data/subpage
及其子文件夾直接訪問任何 - 仍然讓
index.php
訪問這些文件。
我希望我可以理解地寫出來。
謝謝您的幫助
編輯:我現在的.htaccess(位於根)
RewriteEngine On
RewriteRule ^subpage$ /data/subpage/index.php [L]
RewriteRule ^subpage/(?:([^/]+)/?|)(?:([^/]+)/?|)$ /data/subpage/index.php?section=$1&subsection=$2 [L]
RewriteRule ^edit/subpage/?(?:([^/]+)/?|)(?:([^/]+)/?|)$ /data/subpage/index.php?edit=true§ion=$1&subsection=$2 [L]
當然,它的編輯 – Gomi