我正在使用代码点火器。有一个网址模式:localhost/mysite/application/assets/projects/projectname
该projectname
部分是动态的。现在我想将该网址重写为:localhost/mysite/projectname
可以使用.htaccess
吗?如果它是什么将是代码。
我正在使用代码点火器。有一个网址模式:localhost/mysite/application/assets/projects/projectname
该projectname
部分是动态的。现在我想将该网址重写为:localhost/mysite/projectname
可以使用.htaccess
吗?如果它是什么将是代码。
试试这个.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|indexcp\.php?|resources|robots\.txt)
RewriteRule ^([A-Za-z0-9_/.-]+)$ index.php?$1
RewriteRule ^(CSI) index.php?/CSI
AddType text/x-component .htc
编辑
一旦尝试这种方式
RewriteRule ^(/application/assets/projects)$ http://localhost/mysite/$1 [R,NC,L]