這是我的htaccess文件,它有點作用。沒有關係我指定哪些控制器它總是轉到主頁Codeigniter子文件夾多個控制器
<IfModule mod_rewrite.c>
RewriteEngine On
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#This last condition enables access to the images and css folders, and the robots.txt file
RewriteCond $1 !^(index\.php|css|js)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
這是我的網站的網址
http://automationmetrics.local/automation/
的思考?
這可能應該是一個評論而不是答案,因爲這是一個長鏡頭 - 因爲可能會發生許多問題併產生OP的問題...但是從什麼是在問題中給出,這可以作爲答案。 – Shomz
刪除該行解決了問題。 – jrock2004