当前位置:Gxlcms > PHP教程 > Apacheurl重写

Apacheurl重写

时间:2021-07-01 10:21:17 帮助过:33人阅读

RewriteEngine on
# 如果请求的是真实存在的文件或目录,直接访问
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# 如果请求的不是真实文件或目录,分发请求至 index.php
RewriteRule . index.php


回复讨论(解决方案)

如果你是分享,那么请不要拿错误(不完备)的东西来害人
如果你是提问,那么请说明你的问题

设置404状态码,404分发到index.php

人气教程排行