我的公司网站存在一些问题。我的同事将.htaccess
文件保留在_control
目录中,如下所示:
# Virtual site directory
#
# This script lets us make use of default
# versions of files used in a typical site.
# When a request on the site is made for a file
# that doesn't exist, instead of a 404 we rewrite
# the path to /_control/site/
#
# Any file in the directory this script is in will
# take precedence over this script, so this script
# only comes into play if the file does not exist.
# First, set up URL rewriting
Options +FollowSymLinks
RewriteEngine On
# Add trailing slash for directories
# TODO: fix if site not in root dir (e.g. DEV server)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !.+\.(php|js|css|gif|jpg|jpeg|png)$ [NC]
RewriteCond %{REQUEST_URI} !.*/$
RewriteRule ^(.*)$ /$1/ [L,R=301]
# This Apache mod_rewrite rule checks to see
# if the requested file exists, if it doesn't
# then we rewrite to the respective site location.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^.*/_control/(admin|common).*$
RewriteCond %{REQUEST_FILENAME} !^.*/_control/site/.*$
RewriteRule ^(.*)$ site/$1 [L]
我的应用程序的结构如下:
一切正常,但大约一周前,我们的mysite.com/admin和404页面开始重定向到托管公司的网站。 DaveG已经回答了问题的第一部分:https://stackoverflow.com/a/26013322/1933380我能够让虚拟目录正常工作。我仍然遇到404页面的问题。我错过了什么或犯了错误吗?
答案 0 :(得分:1)
您现在正在做的是告诉网络服务器查找另一个文件夹中的所有不存在的页面和目录(_control)。这不会为拼写错误,不存在的页面等提供解决方案。如果您想解决这个问题,可以使用:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^.*/_control/(admin|common).*$
RewriteCond %{REQUEST_FILENAME} !^.*/_control/site/.*$
RewriteRule ^(.*)$ site/errhandler.php?file=$1 [L]
并创建一个名为errhandler.php
的文件,该文件显示一个自定义的404页面,并(例如)根据数据库搜索或其他方式提供可能的替代方案。然后,您可以使用$_GET['file']
显示原始文件名。