Home > Article > Backend Development > .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 处理
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一定要放在网站根目录