Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I've gone through the forum in regard to enabling Clean URL for IIS. Then I finally found out how it can be done using ISAPI_Rewrite and below is my httpd.ini
[ISAPI_Rewrite]
# Defend your computer from some worm attacks
RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O]
# http://www.isapirewrite.com/
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]
# Rewrite protolive to fully qualified url
RewriteCond Host: www
RewriteRule (.*) http\://localhost$1 [I,R]
# Don't rewrite the egs folder..
RewriteRule ^/egs/(.*)$ /egs/$1 [L]
# Accept a url with the following extensions and pass them through unchanged.
RewriteRule (.*.gif|.*.png|.*.jpg|.*.pdf|.*.js|.*.css|.*.ico) $1 [I,L]
# Accept a url with /cron.php and pass it through unchanged.
RewriteRule (/cron.php) $0 [I,L]
# Make URLs sane
RewriteRule /index.php.* $0 [I,L]
RewriteRule /(.*)\?(.*) /index.php\?q=$1&$2 [I,L]
RewriteRule /(.*) /index.php\?q=$1 [I,L]
With the rules written above, the drupal navigation is working well until i tried to use the Upload module. It seems like the rules written above won't work for upload module.
I need to connect a gallery to a custom content type made with CCK module. My website user could attach images (more than one) to a custom node and let other user to vote that images.
I have read some post about this issue but seems that there isn't any solution.
Hola, lo primero de todo siento escribir en español pero es que mi inglés es bastante pobre y no me explicaría lo bien que quiero, si alguien lo entiende y quiere ayudarme, puede responderme en el idioma que lo crea necesario, ya me buscaré el tiempo para traducirlo, no importa.
I'd like to enable visitors to my blog to get RSS feeds, by clicking the RSS icon. This should basically appear on all the "blog" pages ( ...?q=node/99 and so on), but, since I use drupal for my own personal blog only, it should also appear on the "main" page (the one users first arrive on, without any node specifications). How is this done? I've tried tampering with the views_rss module settings, but to no avail.