301 Redirect of Most but not all .htm pages Community Center by Stan Jones … way to enter this in htaccess that is simpler? Can modrewrite do this? Thanks, Stan How to remove a folder from a URL? Digital Media UI / UX Design by OmniX … www/2/ instead of www/? Thanks, Regards X PS: Question: modrewrite, etc only maniuplates the URL it does not actually change… Re: passing variable thru URL but without variable? Programming Web Development by PierreJ … here. [URL="http://bluesquare.asia/lab/modrewrite/"]http://bluesquare.asia/lab/modrewrite/[/URL] You can go to this page and… test with an URL like [url]http://bluesquare.asia/lab/modrewrite/YOUR[/url] NAME and you will be redirect to the… Re: Using no URL directory Programming Web Development by MattEvans … Apache, you can perhaps do this with ModRewrite directives in a directory .htaccess configuration. Research ModRewrite, it's pretty powerful, it allows… Re: 301 redirect on a non-aspx page? Programming Web Development by cstock … know for IIS is [URL="http://www.micronovae.com/ModRewrite/ModRewrite.html"]IIS Mod-Rewrite Pro[/URL], but you can… Re: .htaccess inparticular mod_rewrite? Digital Media UI / UX Design by OmniX … required. I was hoping for a simple example inparticular the modrewrite for the folder but even something similar so I can… gather a better understanding of the modrewrite function and then utilize it to my own requirements. Re: vBulletin mod_rewrite Programming Web Development by Ted S My site has well over 300 forums and subforums so the idea of making an entry for each one is no good... Wouldn't it be easier just to give the forums numeric ids and use modrewrite to redirect based upon that information so you didn't have to keep updating htaccess? Re: vBulletin mod_rewrite Programming Web Development by Ted S …-9]+)-(.*)\.html$ /forumdisplay.php?forumid=$1 [L][/php] This tells modrewrite to forward any url fXID-XTEXT-.html to the forumdisplay… Re: vBulletin mod_rewrite Programming Web Development by Ted S If you are using the quick style chooser as I am you will want to change the modrewrite flags [R] and [L] to [QSA,L] which will append the query strings as needed. Re: vBulletin mod_rewrite Programming Web Development by Hexemer …-9]+)-(.*)\.html$ /forumdisplay.php?forumid=$1 [L][/php] This tells modrewrite to forward any url fXID-XTEXT-.html to the forumdisplay… Re: IPB 2.0.0 mod rewrite Digital Media Digital Marketing Search Engine Strategies by DanceInstructor Just for kicks try searching yahoo or msn. Their results are not so geared towards backlinks and since the 2.0 modrewrite version (if it exists) is newer it won't have as many backlinks. Re: vBulletin mod_rewrite for vB 3.0.7 Digital Media Digital Marketing by l234244 Hello folks, bit of a newbie vBulletin user here. I tried to setup the modrewrite but the install failed. When I had completed the install the links to post in a forum failed to work, I thought it was a problem in the showthread.php so I done it again and the same thing happened. Could be a problem with the .htaccess file? Re: The quick 'n' dirty ultra simple vBulletin SEO hack Programming Web Development by jeff.g hi i want to have a modrewrite archive like [URL="http://forum.00de.de/archive/"]this forum archive[/URL]. can somebody help me out? edit: thx cscgal this tut is amazing. Re: Auto replace hotlinked Image Javascript? Programming Web Development by MattEvans … need FTP access to write .htaccess files that can contain ModRewrite directives.... But they'll only work on an Apache server… Re: How can I make image url like this ? Programming Web Development by fanaticweb Castex, If you are running apace you can use modrewrite to rewrite and port the image urls to your php … Re: Path Style PHP Arguments Programming Web Development by ShawnCplus Actually that's accomplished quite easily with a little Apache voodoo known as ModRewrite. Lets say you are using the fake directory [icode]app[/icode] [code=htaccess] RewriteEngine On RewriteRule ^app/(.*)/?$ /index.php?app=$1 [/code] Place that in the .htaccess file and it will be completely transparent to the user. Re: URL writting rules Programming Web Development by techniner Yes, first make sure ModRewrite is enabled on your server. Then use .htaccess to rewrit urls. Then something to this effect: Options +FollowSymLinks RewriteEngine on RewriteRule details-cart-(.*)\.html$ details.php?cart=$1 It would make it SEO friendly. I think that's what you are after. Re: .htaccess inparticular mod_rewrite? Digital Media UI / UX Design by almostbob try [url]http://support.netfirms.com/idx.php/0/696/article/How-do-I-configure-URL-forwarding-using-modrewrite.html[/url] its my host's site its pretty basic, by numbers, Re: .com/index.html vs .com Digital Media UI / UX Design by webdesignperth yep. .htaccess will do the trick. you can either use the modrewrite or Options +FollowSymLinks DirectoryIndex index.html index.php [URL="http://www.woocom.com.au/website-design.html"]Web Design[/URL] Re: .htaccess to lighttpd.conf Programming Web Development by pritaeas [url]http://redmine.lighttpd.net/wiki/lighttpd/Docs:ModRewrite[/url] Re: using htaccess to change page title Programming Web Development by smantscheff … file names in the apache webserver using the redirect module (ModRewrite). If the redirect engine is installed and active and redirection… Re: using mod_rewrite Programming Web Development by codemonkey88 … everything should work. Not sure if I can test if modrewrite is in the conf file as I don't have… Re: .httaccess to web.config Programming Web Development by pritaeas Read this: http://learn.iis.net/page.aspx/470/importing-apache-modrewrite-rules/ Re: rewrite url problem Programming Web Development by akmozo … links that may help you : http://www.askapache.com/htaccess/modrewrite-tips-tricks.html http://www.generateit.net/mod-rewrite/ **Try… Making Clean Urls with Modrewrite Hardware and Software Linux and Unix by shnippy Hello, I have been scouring the web trying to find as much information on mod_rewrite as I can, but the solutions I have found do not suit my need. I have a website that has been up for almost 3 years, and I am having a hard time getting pages indexed to the fullest, by search engines. Here is the lowdown: Apache Server Scripts are … Re: Making Clean Urls with Modrewrite Hardware and Software Linux and Unix by bigtalk In my searches for .htaccess information and security, I found this page: * [URL="http://corz.org/serv/tricks/htaccess2.php"].htaccess tips and tricks: redirecting and rewriting[/URL] I hope this has what you're looking for. Cheers, BigTalk Re: How to remove a folder from a URL? Digital Media UI / UX Design by jazz_vill you can also set the root directory of your server to www/2/ folder if your using Apache webserver edit the httpd.conf and change the root directory there. or you can also put your 3.php file in your www folder since that is your default root. Re: How to remove a folder from a URL? Digital Media UI / UX Design by OmniX That was the first idea I had but im yet to attempt as I would like to gather a 'source' of ideas and see which is best. I am assuming if changing the root is possible would be the best attempt as the 'server' can still access the files where as human counter parts cannot! So its a win win situation to me, only thing is if it is do able on my …