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
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!
|