View Single Post
  #19  
Old 09-28-2006, 05:27 AM
Dennis's Avatar
Dennis+ Offline
Team Pixelpost
 
Join Date: Jul 2006
Posts: 2,394
Send a message via MSN to Dennis
Guiseppe,

You need to add a .htaccess file with rewrite rules in them. The url .../fotoblog/liberty will have to be rewritten to .../fotoblog/index.php?photoslug=liberty

Quote:
Originally Posted by jaywilliams View Post
Well, you can easily create a .htaccess file with the following text to do that.
Code:
RewriteEngine On

RewriteRule ^photo/(.*)$ index.php?photoslug=$1
But you will need to modify the script and your template so all the links reference the photos that way. So it would take a little effort on the users end. And as you noticed, this is a beta, so better integration with mod_rewrite will probably be something that will be added in the future.

And thanks for your comment!
Reply With Quote