metroid2 Posted May 29, 2013 Author Report Share Posted May 29, 2013 Domāju, ka pieturēšos pie tā, ka likšu defulto valodu pamata direktorijā un pārējās sub direktorījā.. (Ķipa direktorīja pēc url.) Veidošu pieturoties pie dažiem padomiem ko googlē varēju atrast.. http://support.google.com/webmasters/bin/answer.py?hl=en&answer=189077&topic=2370587&ctx=topic // linki http://support.google.com/webmasters/bin/answer.py?hl=en&answer=2620865&topic=2370587&ctx=topic // sitemaps Kas attiecas uz kodu: tad ar to nebūs problēmas. Galvenais nevarēju iebraukt ko darīt ar index.php vai likt defulto valodu pamatā vai redirektēt uz subdirektorīju (Atkal piebildīšu ka ķipa direktorīju, nav man programmētāju vārdu krājums :D) Pamatā koda urls būs aptuveni šāds: index.php?lang=lv&page=1 u.t.l. izmantošu htaccess lai pārveidotu urls seo draudzīgus.. (piebildīšu ka lapas saturs būs fiksēts un lapas nebūs daudz, tāpēc definēšu katru url htaccess atsevišķi.) Nu kaut kā tā.. Quote Link to comment Share on other sites More sharing options...
anonīms Posted May 30, 2013 Report Share Posted May 30, 2013 (edited) tāpēc definēšu katru url htaccess atsevišķi don't do it man! RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] Edited May 30, 2013 by anonīms Quote Link to comment Share on other sites More sharing options...
jurchiks Posted May 30, 2013 Report Share Posted May 30, 2013 (edited) Man labāk patīk šādi: RewriteEngine on RewriteCond %{REQUEST_URI} !^/images/ RewriteCond %{REQUEST_URI} !^/css/ RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{SCRIPT_FILENAME} !index.php RewriteRule .* ./index.php [L] Un tad man viss ir skaisti. PHP pusē parsēju reālo REQUEST_URI, nevis kaut kādu papildus GET parametru. Pārbaudīts, strādā perfekti, īpaši labi der priekš MVC freimworkiem. Edited May 30, 2013 by jurchiks Quote Link to comment Share on other sites More sharing options...
metroid2 Posted May 30, 2013 Author Report Share Posted May 30, 2013 Hmm.. Paldies anonīm, noteikti izmantošu! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.