热搜:NVER node 开发 php

.htaccess

2024-07-26 23:00:01
.htaccess

项目里面有.htaccess文件
代码

AddDefaultCharset utf-8 RewriteEngine onRewriteRule !admin2s|\.(js|ico|gif|jpg|png|css|swf|html|php|pdf|xls)$ index.php

这个是用来做什么的?


回复讨论(解决方案)

url重写,定义规则的

url重写,定义规则的



我在控制台没看到没看到跳转后处理的信息

AddDefaultCharset utf-8  总是发出 utf-8 头信息
RewriteEngine on  开启 url 重写
RewriteRule !admin2s|\.(js|ico|gif|jpg|png|css|swf|html|php|pdf|xls)$ index.php  url 重写规则

url 重写规则是:
除了目录 admin2s 和 图片文件外的所有请求都交由 index.php 处理

AddDefaultCharset utf-8  总是发出 utf-8 头信息
RewriteEngine on  开启 url 重写
RewriteRule !admin2s|\.(js|ico|gif|jpg|png|css|swf|html|php|pdf|xls)$ index.php  url 重写规则

url 重写规则是:
除了目录 admin2s 和 图片文件外的所有请求都交由 index.php 处理




如果我访问的页面不存在,则交给XXX.php处理,这个规则要怎么书写?


AddDefaultCharset utf-8  总是发出 utf-8 头信息
RewriteEngine on  开启 url 重写
RewriteRule !admin2s|\.(js|ico|gif|jpg|png|css|swf|html|php|pdf|xls)$ index.php  url 重写规则

url 重写规则是:
除了目录 admin2s 和 图片文件外的所有请求都交由 index.php 处理




如果我访问的页面不存在,则交给XXX.php处理,这个规则要怎么书写?

在.htaccess里加入这一行就行了

errorDocument 404 /xxx.php

xxx.php一定要放在网站根目录