欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 去掉Url里的 indexphp

程序员文章站 2023-12-23 19:05:21
...
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 ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了php 去掉Url里的 indexphp,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

上一篇:

下一篇: