@lelebart: It depends on your theme. I’m using a heavily modified version of This Just In and have inserted this code just after line 11 of index.php
:
<?php if (get_post_meta($post->ID, '_isEvent', true) == 'yes') : ?>
<link rel='stylesheet' id='sp-events-calendar-style-css' href='https://www.challengeblog.org/wp-content/plugins/the-events-calendar/resources/events.css?ver=2.9.2' type='text/css' media='' />
<div style="clear:both;"></div>
<div id="tec-event-meta">
<dl class="column">
<dt><?php _e('Start:', $spEvents->pluginDomain) ?></dt>
<dd><?php echo the_event_start_date(); ?></dd>
<?php if (the_event_start_date() !== the_event_end_date() ) { ?>
<dt><?php _e('End:', $spEvents->pluginDomain) ?></dt>
<dd><?php echo the_event_end_date(); ?></dd>
<?php } ?>
<?php if ( the_event_cost() ) : ?>
<dt><?php _e('Cost:', $spEvents->pluginDomain) ?></dt>
<dd><?php echo the_event_cost(); ?></dd>
<?php endif; ?>
</dl>
<dl class="column">
<?php if(the_event_venue()) : ?>
<dt><?php _e('Venue:', $spEvents->pluginDomain) ?></dt>
<dd><?php echo the_event_venue(); ?></dd>
<?php endif; ?>
<?php if(the_event_phone()) : ?>
<dt><?php _e('Phone:', $spEvents->pluginDomain) ?></dt>
<dd><?php echo the_event_phone(); ?></dd>
<?php endif; ?>
<?php if( tec_address_exists( $post->ID ) ) : ?>
<dt><?php _e('Address:', $spEvents->pluginDomain) ?><br /><a class="gmap" href="<?php event_google_map_link() ?>" title="<?php _e('Click to view a Google Map', $spEvents->pluginDomain); ?>" target="_blank"><?php _e('Google Map', $spEvents->pluginDomain ); ?></a></dt>
<dd>
<?php tec_event_address( $post->ID ); ?>
</dd>
<?php endif; ?>
</dl>
</div>
<?php endif; ?>
You can see the results of my ugly hack at challengeblog.org. It’s not exactly what the original poster was trying to do and may not suit your needs either.
I don’t see that the .htaccess file has any relevance to what you’re trying to do, but I’m an amateur at this stuff myself.