大家好我試圖重定向到儀表板控制器addLocation功能admin文件夾下,我已經給了低於其出404頁的鏈接沒有發現,404頁,而在笨頁面重定向
http://localhost/kooly/admin/dashboard/addLocation
這是我htaccess文件幫我解決這個問題的重定向
的.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /kooly/
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
我試過它得到相同的錯誤 –
本地主機/ kooly /管理員/儀表板 你可以嘗試,如果你可以訪問此鏈接? –
是的,我可以訪問該鏈接。現在它的工作對我來說,我給了我的網址大寫字母我已經改變了addLocation現在它的工作addlocation謝謝@Gennia –