2013-12-17 99 views
0

我希望你能帮助我们,这里是我的问题,我需要配置这个URL重写.httacces规则到一个web.config文件,因为该网站将在IIS 7上运行,并且是在PHP开发重写url重写规则tio IIS 7

RewriteBase/

RewriteRule ^web/contacto.php$ contacto/ [R,L] 
RewriteRule ^web/marcas.php$ marcas/ [R,L] 
RewriteRule ^web/categoria.php$ busqueda/resultados/ [R,L] 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-l 

RewriteRule .* index.php [L] 

在此先感谢!

+0

IIS管理器允许您导入htaccess的规则,并将其转换为你... – superphonic

回答

0

IIS管理器允许您导入htaccess的规则,并将其转换为你...

+0

谢谢!我会试试看! – user3111628