网络营销电子商务研究中心

网络营销电子商务研究中心 (https://www.0058.net/index.php)
-   X-Cart (https://www.0058.net/forumdisplay.php?f=70)
-   -   Clean url for contact us page (https://www.0058.net/showthread.php?t=4838)

Abel 2014-11-04 10:01 PM

Clean url for contact us page
 
This can be easily done by .htaccess rewrite rule.

Example : http://www.loupesusa.com/contacts.html

.htaccess rule : RewriteRule ^contacts.html/?$ help.php?section=contacts&mode=update [L]

Code:

# Clean URLs [[[
Options +FollowSymLinks -MultiViews -Indexes
<IfModule mod_rewrite.c>
        RewriteEngine On

        RewriteBase /

        RewriteCond %{ENV:REDIRECT_STATUS} !^401$
        RewriteRule ^contacts.html/?$ help.php?section=contactus&mode=update [L]
        RewriteCond %{REQUEST_URI} !^/(payment|admin|provider|partner)/
        RewriteCond %{REQUEST_FILENAME} !\.(gif|jpe?g|png|js|css|swf|php|ico)$
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-l
        RewriteRule ^(.*)$ dispatcher.php [L]
</IfModule>
# /Clean URLs ]]]



All times are GMT +8. The time now is 10:59 PM.

Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.