so im abit seo crasy atm...
how do i take one of my person sites and turn it into say
/aboutus.php
to
/about-us/
regards
an i thought this would be the right place to ask :P lol
vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.
This is a discussion on SEO'in non vb/vbseo products? within the General Discussion forums, part of the vBulletin SEO Discussion category; so im abit seo crasy atm... how do i take one of my person sites and turn it into say ...
so im abit seo crasy atm...
how do i take one of my person sites and turn it into say
/aboutus.php
to
/about-us/
regards
an i thought this would be the right place to ask :P lol
AshfordTalk.co.uk - Coming Soon
Without a script to pre-process like vbseo does, you basically have to do it manually.
by manually, i mean instead of <a href="/about.php"> you need to code it as <a href="/about/>
then, you need an .htaccess rule set to process the directive like
RewriteEngine On
RewriteRule ^/(.+)/$ $1\.php [L]
untested... but i think that will do it
oh yeah i dont mind editing it..
but that doesnt work :S lol
how do i do it seperate per each URL, as it would be easier i think lol
AshfordTalk.co.uk - Coming Soon
anyone?
AshfordTalk.co.uk - Coming Soon
Code:RewriteRule ^about-us/$ aboutus\.php
That doesnt work either... lol
semi works if i gobut the images are broken -.- lolCode:RewriteRule ^about-us/$ aboutus\.php
AshfordTalk.co.uk - Coming Soon
Convert all your image URLs
1. to absolute URLs instead of relative. (easier)
OR
2. be referenced from site root rather than document root
whats option 2 require?
AshfordTalk.co.uk - Coming Soon
Sample :
filename : file.php in _root_/dir1/
image : image.gif in _root_/img/
to insert image.gif in file.php, URLs can be :
> your-domain.com/img/image.gif
> ../img/image.gif