如果我去:在本地主機,但404的笨頁面加載在服務器
我看到我的測試頁。如果我去:
,我收到了404頁。我不是指Codeigniter 404頁面,而是默認的Apache頁面。代碼庫是相同的。
的主頁工作正常,但任何內頁404。這是我的根.htaccess文件的內容:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
# Removes access to the system folder by users. Additionally this will allow you to create a System.php controller, 'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
# When your application folder isn't in the system folder. This snippet prevents user access to the application folder. Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
# 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
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
國防部重寫的是()與驗證的phpinfo在服務器上啓用。我錯過了什麼嗎?
你設置了base_url()嗎?在'config.php'中? –
@Hekmat我確實將它設置爲'http:// mysubdomain.mydomain.com /' – TK123