我有一個htaccess設置,其中已經重寫所有請求index.php。但現在我有一個條件,我想要重寫(我不知道該怎麼辦或選擇哪個)子文件夾/管理到index.php?route = admin/login,是的確切url從特定的子文件夾重寫htaccess
期望
www.domain.com/admin
重寫
www.domain.com/index.php?route=admin/login
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/install(.*)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
#########################################
##I expect the line below will go to the url , but when i enter the subfolder , the page remain at the index
RewriteRule ^admin/(.*)$ /$1?route=admin/login [R=301,L]
你在'/ admin /'文件夾中有任何.htaccess嗎? – anubhava
@anubhava是的,我可以有 –