如何写php.ini这样
家/ XYZ /
表示
家/ C /的index.php?Q = XYZ
不创建xyz目录。
答案 0 :(得分:0)
试试这个
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^home/(.*)/?$ /home/c/index.php?q=$1 [L]
这应该重定向home /
中所有不存在的文件/目录编辑:删除尾部斜杠