0
.htaccess文件:网址重定向到目录之前
RewriteEngine on
RewriteBase /P5/
#existing rule
#remove the www.
RewriteCond %{HTTP_HOST} ^www.website.co.uk$ [NC]
#new Rule
#if its not a directory
RewriteCond %{REQUEST_FILENAME} !-d
#and it has a trailing slash then redirect to URL without slash
RewriteRule ^(.+)/$ /$1 [L,R=301]
RewriteRule ^([a-zA-Z0-9_-]+)$ def.php?p=$1 [L]
这是,如果我访问某些菜单。
例如:家在我的地址栏是这样写:localhost/P5/home
,但如果我回家后添加/
:localhost/P5/home/
它被自动重定向到:localhost/home
和页面没有找到出现
任何人都知道这个问题?感谢