本文目录一览

1,PHP伪静态设置

httpd.ini里面是伪静态的规则,上传httpd.ini到网站根目录下

PHP伪静态设置

2,phpstudy伪静态设置该怎么做

打开配置文件 httpd-conf按 CTRL+F 查找AllowOverride None将其替换为AllowOverride All然后继续查找Options FileInfo AuthConfig Limit将其下面的AllowOverride None也改为AllowOverride All。保存后,重启Apache。在网站(根)目录下添加.htacces文件测试下,你的phpstudy已经可以支持.htaccess伪静态了!
1、输入以下命令cd /alidata/server/nginx/conf/rewrite再输入ll看看是不是像下面截图的一样。2、这些就是伪静态规则文件。我们打开phpwind.conf看看。已经在rewrtie目录下配置了常见程序的伪静态规则。可以直接调用。3、如果没有就按照程序名.conf的命名方式新建一个配置文件配置文件搞清楚了,你可能会说好像网站伪静态还是啊。别着急,因为伪静态规则是需要被网站配置文件调用才行的。4、输入以下命令cd /alidata/server/nginx/conf/vhosts进入到网站配置目录5、打开配置文件修改好伪静态调用文件下面测试下我们配置的文件是否正确吧输入nginx: the configuration file /alidata/server/nginx/conf/nginx.conf syntax is oknginx: configuration file /alidata/server/nginx/conf/nginx.conf test is successful如果出现以上两句话就说明配置成功了。下面重启下nginx就可以了。
一、开启mod_rewrite模块 点击任务栏中的phpstyudy图标,选择“配置文件”--“httpd-conf” 搜索 loadmodule rewrite_module modules/mod_rewrite.so (apache2是这个) 去掉前面的# 搜索allowoverride none 替换为 allowoverride all 有好几个找到和下面代码类似的那个 # # "d:\usr\local\apache2\cgi-bin" should be changed to whatever your scriptaliased # cgi directory exists, if you have that configured. # allowoverride all options none order allow,deny allow from all 二 、在apache2\conf\httpd.conf 最后一行添加: rewriteengine on rewriterule ^(.*)-htm-(.*)$ $1.php?$2 (这里是httpd.ini里面的伪静态规则) 然后重新apache后就可以正常使用了。

phpstudy伪静态设置该怎么做


文章TAG:php  伪静态  静态  怎么  php  怎么配置  PHP伪静态设置  
下一篇