php去掉url里的indexphp

php项目中,为了访问链接的友好性及seo优化,我们经常需要为访问页面配置一个短链接,并把index.php去掉。
php所用的web服务器通常为:nginx或者apache。下面分别说一下两种服务器的不同配置方法

nginx 配置:
1、打开nginx配置文件:/usr/local/nginx/conf/nginx.conf
2、修改文件,有两种语法
a:

location / {
try_files $uri$uri/ /index.php?q=$uri&$args;
}

b:

location / {
if (!-e$request_filename) {
rewrite ^/(.*)$ /index.php?q=$uri&$args;
}
}

如果根目录为二级目录,则需要做对应修改:
a:

location /cn/ {
try_files $uri$uri/ /cn/index.php?q=$uri&$args;
}

b:

location /cn/ {
if (!-e $request_filename) {
rewrite ^/cn/(.*)$ /cn/index.php?q=$uri&$args;
}
}

3、检查nginx是否有语法错误,无错误则重启

#检查是否有语法错误
/usr/local/nginx/sbin/nginx -t
#重启nginx
/usr/local/nginx/sbin/nginx -s reload

apache 配置:
1、httpd.conf配置文件中加载了mod_rewrite.so模块

#loadmodule rewrite_module modules/mod_rewrite.so 把前面的 # 去掉

2、修改httpd.conf配置文件:
allowoverride none 中将none改为 all
(注意其他地方的allowoverride也统统设置为all)

allowoverride none 改 allowoverride alloptions none
order allow,deny
allow from all

3、.htaccess文件必须放到跟目录下
.htaccess 文件内容

rewriteengineonrewritecond%{request_filename} !-d
rewritecond%{request_filename} !-f
rewriterule ^(.*)$ index.php/$1 [qsa,pt,l]

‘).addclass(‘pre-numbering’).hide();
$(this).addclass(‘has-numbering’).parent().append($numbering);
for (i = 1; i

Posted in 未分类

发表评论