我正在网站上工作,根据我的建设页面。我已经在新网站的文件夹newsite上上传了新网站的文件。
我使用.htaccess文件从域中删除index.php。
如果我输入www.somesite.com/newsite,或显示http://www.somesite.com/newsite欢迎控制器。到目前为止,非常好。
我有后台管理系统,当我输入时: http://www.somesite.com/newsite/folderName/controllername/functionname我收到404错误。
folderName是放置后台控制器的文件夹的名称。任何人都知道为什么我只为后端得到这个错误,而头版正在工作?
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
php_value post_max_size 20M
php_value upload_max_filesize 20M
php_value max_execution_time 6000000
如果我像这样在后台的网址中添加index.php http://www.somesite.com/newsite/index.php/folderName/controllername/functionname
然后显示页面。
的问候,卓然
答案 0 :(得分:0)
添加
后 显示RewriteBase /newsite/
页面中的 .htaccess
,现在就像魅力一样。