using .htaccess to overtire my URL
i need to make this url
http://yadoniaclients.com/yadonia/services/our-services/mobile-application-development
(any page)
to look like this
http://yadoniaclients.com/yadonia/services/ (any page)
this my current .htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^yadonia/(.*)$ yadonia/index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
thanks for your help.
No comments:
Post a Comment