|
在iis下面 想去掉index.php
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Block external access to the httpd.ini and httpd.parse.errors files
RewriteRule /httpd(?:\.ini|\.parse\.errors).* / [F,I,O]
# Block external access to the Helper ISAPI Extension
RewriteRule .*\.isrwhlp / [F,I,O]
RewriteEngine on
RewriteCond $1 !^(index\.php|images|product_tags|sitemap|up_files|css|paypal|system/plugins/fckeditor|js|robots\.txt)
RewriteRule ^(.*)$ /index\.php/$1
这样index.php能去掉 但是图片路径那些就找不到
需要怎么写呢 |
|