-1
我一直在努力與此一段時間。htaccess重定向到子目錄並隱藏它
我的應用程序結構如下:
- webroot
- app
- index.php
- .htaccess
我想,當某人進入到Web根目錄www.example.com
被重定向到應用程序文件夾中的應用程序啓動。不過,我希望網址爲www.example.com
,而不是www.example.com/app/
。
我想我需要兩個htaccess?一個在webroot中,一個在app中。
目前/app/.htaccess
樣子:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
這個隱藏URL中的.index.php
文件。
感謝它爲我的作品 – Rajaraman