我在htaccess中有一个语法:
`RewriteRule ^(.*)/(.*)/([a-z0-9-_.]+)/(.*)$ $1.php?n=$2&z=$3&t=$4 [L,QSA]`
结果:
www.someweb.com/file1/n1/s1/t2
www.someweb.com/file2/n2/s2/t2
etc.
但我找不到所有的css,js文件。所有这些目录都从css / file.css,js / file.js,img / file.jpg等开始。当我执行index.php时,所有css,js都可见,
当我把“/”放到php文件中的每个目录时,index.php看不到那些文件,例如:www.someweb.com/file2/n2/s2/t2
如何在htaccess中将此语法编写为上述两个示例中的visibility css,js文件 - index.php,例如:www.someweb.com/file2/n2/s2/t2。
感谢您的帮助。