.htaccess

WBOY
Release: 2016-06-23 13:20:38
Original
1719 people have browsed it

项目里面有.htaccess文件
代码

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

这个是用来做什么的?


回复讨论(解决方案)

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一定要放在网站根目录

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template