bravo14 Posted December 28, 2012 Share Posted December 28, 2012 Hi guys I have a site that has different url rewrites based on the language e.g. News (English) notizie (Italian noticias (Spanish) how can I find out with php iwhich is set in the request_uri when it says [REQUEST_URI] => /notizie/1 Thanks Link to comment https://forums.phpfreaks.com/topic/272442-request_uri-contains/ Share on other sites More sharing options...
Muddy_Funster Posted December 28, 2012 Share Posted December 28, 2012 I would say you would need to either hard code an array and look through it to astablish the relationship, store the relationship in another file and use a function like file_get_contents() to facilitate the check, or store the realtions in a database and look them up from there. You wouldn't access the .htaccess/httpd.conf file directly as php shouldn't have the permissions to do that. Link to comment https://forums.phpfreaks.com/topic/272442-request_uri-contains/#findComment-1401750 Share on other sites More sharing options...
bravo14 Posted December 28, 2012 Author Share Posted December 28, 2012 I need to find out if which page it is in the request_uri so I can set the language if there is no cookie set for it the request uri is [REQUEST_URI] => /notizie/1 I would be able to do it if is equal to, just need to know if there is a way I can do a contains? Link to comment https://forums.phpfreaks.com/topic/272442-request_uri-contains/#findComment-1401759 Share on other sites More sharing options...
Muddy_Funster Posted December 28, 2012 Share Posted December 28, 2012 strpos() should do it Link to comment https://forums.phpfreaks.com/topic/272442-request_uri-contains/#findComment-1401763 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.