1、网站根目录下须要有 .htaccess 文件,没有则自己创建一个,内容如下:

<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.)$ index.php/ [QSA,PT,L]</IfModule>

如果你的apache是fastcgi模式下,则须要修正

RewriteRule ^(.)$ index.php/ [QSA,PT,L]更换成RewriteRule ^(.)$ index.php [L,E=PATH_INFO:]

2、在apache的配置文件httpd.conf中查找 : LoadModule rewrite_module modules/mod_rewrite.so 将前面的#去掉,如果没有这段内容,则须要手动加上

php伪静态如何配置PHP各情况下伪静态设置装备摆设 Angular

3、在apache的配置文件httpd.conf中查找所有的 AllowOverride None,将 None 都更换成 All . 保存文件 并重启apache做事。

二、Nginx的伪静态配置

找到nginx的配置文件 nginx.conf, 在里面的 server{ } 里增加以下内容

location / { if (!-e $request_filename) { rewrite ^(.)$ /index.php?s=$1 last; break; }}

重启nginx即可生效

三、IIS的伪静态配置

如果你的做事器环境支持ISAPI_Rewrite的话,可以配置httpd.ini文件,添加下面的内容:

RewriteRule (.)$ /index\.php\?s=$1 [I]

在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点:

<rewrite><rules><rule name=\"大众OrgPage\"大众 stopProcessing=\公众true\"大众><match url=\公众^(.)$\公众 /><conditions logicalGrouping=\"大众MatchAll\公众><add input=\公众{HTTP_HOST}\"大众 pattern=\公众^(.)$\公众 /><add input=\"大众{REQUEST_FILENAME}\"大众 matchType=\"大众IsFile\"大众 negate=\公众true\"大众 /><add input=\公众{REQUEST_FILENAME}\"大众 matchType=\公众IsDirectory\"大众 negate=\"大众true\公众 /></conditions><action type=\公众Rewrite\"大众 url=\公众index.php/{R:1}\公众 /></rule></rules></rewrite>

举两个例子,怎么样写好代码

最经典的算法,献给正在口试道路上的你

如果你现在在口试PHP的道路上,看看口试根本题吧

Redis干系口试题