我Apache開啟了重定向功能;
.htaccess 如下
<IfModule mod_rewrite.c>
Options +FollowSymlinks
# 是否開啟URL Rewrite.
RewriteEngine On
RewriteRule ^/login/?(\.html)?$ index.php?m=Home&c=Passport&a=login&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
我在瀏覽器中執行 http://127.0.0.1/login
我在 ThinkPHP\Library\Think\Controller.class.php
__construct() 函式裡面列印 var_dump(MODULE_NAME.'/'.CONTROLLER_NAME.'/'.ACTION_NAME);
exit();
結果輸出 Home/Login/index 字串
求問題解決方法??
.htaccess 如下
<IfModule mod_rewrite.c>
Options +FollowSymlinks
# 是否開啟URL Rewrite.
RewriteEngine On
RewriteRule ^/login/?(\.html)?$ index.php?m=Home&c=Passport&a=login&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
我在瀏覽器中執行 http://127.0.0.1/login
我在 ThinkPHP\Library\Think\Controller.class.php
__construct() 函式裡面列印 var_dump(MODULE_NAME.'/'.CONTROLLER_NAME.'/'.ACTION_NAME);
exit();
結果輸出 Home/Login/index 字串
求問題解決方法??