当前位置:Gxlcms > 数据库问题 > .htaccess中的apache rewrite规则详解

.htaccess中的apache rewrite规则详解

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

.htaccess中的apache rewrite写法:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?xxx.com$
RewriteCond %{REQUEST_URI} !^/blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /blog/$1

没有输入文件名的默认到到首页

RewriteCond %{HTTP_HOST} ^(www.)?xxx.com$
RewriteRule ^(/)?$ blog/index.php [L]

.htaccess中的apache rewrite规则详解

标签:文件名   filename   com   文件   $1   apach   tee   engine   uri   

人气教程排行