1
我想將一個文件夾的所有無文件和無目錄重定向到另一個文件夾。 .htacess應該位於root(http://site.com)上。htacess - 將一個文件夾重定向到另一個內部
例子:
http://site.com/admin/core/file.php - Does not exists. So, redirect (internaly) to http://site.com/adminhide/core/file.php
http://site.com/admin/index.php - Exists. So, don't do anything..
我試圖創建的代碼,但我有一個500內部服務器錯誤:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/admin/$
RewriteRule (.*)$ /adminhide/$1 [L]
請幫助我, 謝謝您的時間:)
嘿。不,我希望它是動態的。所以,如果不是/admin/core/file.php是/admin/core/ola.php,它將內部重定向到/adminhide/core/ola.php。與文件index.php相同。我不想不重定向只有index.php文件,但是/ admin /目錄中的所有現有文件。謝謝 –
@William更新了我的答案。希望是有用的。 –
您好,我希望它在內部重定向,因此當您輸入site.com/admin/core/file.php時,因爲它不存在,它會向您顯示site.com/adminhide/core/file.php,但地址欄會保留。謝謝。 –