WebSite X5Help Center

 
Marcin B.
Marcin B.
User

How To Hide Url Extension?  en

Autore: Marcin B.
Visite 2881, Followers 3, Condiviso 34  
Parole Chiave: extension,hide

Is there any chance to hide url extension using website x5? All my pages have .html extension I will appriciate any respond

Postato il
5 RISPOSTE
Der Zwoemti
Der Zwoemti
Moderator

.htacces Inhalt 

RewriteEngine On

# Replace ".php" by ".html"
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} ^(.*)\.html$
RewriteCond %1\.php -f
RewriteCond %{REQUEST_URI} ^(.*)\.html$
RewriteRule ^(.*)$ %1.php [L]

# Replace ".php" by ""
#
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [L]

# External redirect for files requested as a directory (remove trailing slash)
#
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(.*)/$
RewriteCond %1 -U
RewriteRule ^(.*)$ %1 [L,R] 

Leggi di più
Postato il da Der Zwoemti
Marcin B.
Marcin B.
User
Autore

:) can you explain what should I do with that code please? Where should I locate it? Thanks in advance Regards

Leggi di più
Postato il da Marcin B.
Der Zwoemti
Der Zwoemti
Moderator

.htaccess und google sind dein Freund...ist nicht mein Sprachbereich wo ich geschrieben habe...

Leggi di più
Postato il da Der Zwoemti
Marcin B.
Marcin B.
User
Autore

Thanks, i was trying on google and i found that what you have send me. I want to know if that is possible to do through website x5 or I have to locate that code somewhere.

Leggi di più
Postato il da Marcin B.
Marcin B.
Marcin B.
User
Autore

anybody can help with that issue??

Leggi di più
Postato il da Marcin B.