Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
scott (Guest)
scott (Guest)
I am trying to activate friendly URL's. I have manually entered URL's with each page in my ViARt admin. I believe I know have to activate FURL’s in the Global settings for them to work now. Is that correct? Below is my .htaccess file (actually, I have 4 .htaccess files but the one below is the only one that doesn’t have .numbers attached to it (i.e. .htaccess.1155354112. etc). Please advise if the bolded code below is in the correct place in the .htaccess file.
 
Thanks.
 
# -FrontPage-
 
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
 
RewriteEngine On
RewriteCond % !-f
RewriteCond % !-d
RewriteRule . /friendly_url.php [L]
 
 
order deny,allow
deny from all
allow from all
 
 
order deny,allow
deny from all
 
AuthName ****
AuthUserFile /home/******/public_html/****/_vti_pvt/service.pwd
AuthGroupFile /home/******/public_html/****/_vti_pvt/service.grp
 
 
Anjula
Anjula
Hello,
 
Sorry, there were some errors in the latest release. The correct code for friendly url should look like:
 
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /friendly_url.php [L]
 
With regards,
ViArt Support Team