简体   繁体   中英

not getting slash / on my website url

My .htaccess:

<IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>


#non www redirection 
RewriteEngine On
RewriteCond %{HTTP_HOST} !^ruggedtrailsnepal\.com
RewriteRule (.*) http://ruggedtrailsnepal.com/$1 [R=301,L]

i am not getting / (slash) on some url , but some url's are working , how to solve this problem

link with problem

ruggedtrailsnepal.comtravel-info/visa-information.html

link without problem

ruggedtrailsnepal.com/company-info/about-us.html

Reorder your rules and use REQUEST_URI variable:

<IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine on

    #non www redirection 
    RewriteCond %{HTTP_HOST} !^ruggedtrailsnepal\.com$ [NC]
    RewriteRule ^ http://ruggedtrailsnepal.com%{REQUEST_URI} [R=301,L,NE]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

Better test this in a new browser to avoid old caches.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM