1
我有一個小型的網絡應用程序,我正在部署到服務器。但是,突然間htaccess文件不工作(不是索引文件,但是當我去到一個url,如/login
)。它始終保持該文件不存在,但是,它顯示爲「unfindable」的文件肯定存在。我檢查了由file_get_contents
錯誤顯示的相對路徑/home/sites/xxx.co.uk/public_html/index.php
,並顯示該文件。HtAccess重寫無法找到文件
DirectoryIndex index.php
Options -Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*[^/])/?$ index.php?route=$1 [L,QSA]
有沒有人知道發生了什麼事?