2014-09-01 85 views
0

這裏是URL kingmaddy.me/adm http://kingmaddy.me/signup我不能訪問錯誤。沒有輸入文件指定我如何解決它?

這裏是我的htaccess文件

# Turn on URL rewriting 
RewriteEngine On 

RewriteBase // 

# Protect hidden files from being viewed 
<Files .*> 
    Order Deny,Allow 
    Deny From All 
</Files> 

# Protect application and system files from being viewed 
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L] 

# List of files in subdirectories will not be displayed in the browser 
Options -Indexes 

# Allow any files or directories that exist to be displayed directly 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 

AddDefaultCharset utf-8 
AddCharset UTF-8 .htm .html .txt 
AddType "text/html; charset=UTF-8" .htm .html .txt 
AddType "text/css; charset=UTF-8" .css 
AddType "text/javascript; charset=UTF-8" .js 

# Rewrite all other URLs to index.php/URL 
RewriteRule .* index.php/$0 [PT] 

注RewriteEngine敘述是在

感謝名單

+0

任何一個????????????? // – Maddy 2014-09-01 18:45:12

回答

0

我有錯誤「無輸入文件指定「,我解決了它改變文件名。這是因爲這個名字包含了「ñ」符號。也許你的名字中有另一個無效的字符。

我希望我能幫助別人。

相關問題