1
vote
2answers
65 views

Clear URL with .htaccess

I am pretty new to webdesign and haven't been able to figure this one out.. I am using HTML5Boilerplate as a template for my new website. The .htaccess file that ships with the template rewrites ...
1
vote
2answers
40 views

.htaccess - re-writing a url using multiple parts of the original

I've been trying to fix this problem for 3 days and can't find the answer so I'm hopeful someone will be able to shed some light on this. I am looking to dynamically re-write URLs as permanent 301 ...
0
votes
0answers
64 views

.htaccess RewriteCond REQUEST_URI Dynamic SEO Generated URIs

Ok my eyes and fingers are bleeding now trying to get this stuff to work. Here is a couple examples of incoming URIs I want to test in my .htaccess file. abc.com abc.com/en abc.com/zh-cn/ ...
0
votes
0answers
51 views

Test htaccess REQUEST_URI for string, rebuild using RewriteRule for SEO

I'm trying to get my .htaccess rules to test for a string pattern. RewriteCond %{REQUEST_URI} ^/[a-z]{2}(-[a-z]{2})?/.+$ [NC] If successful I need to dynamically rewrite it to the following for my ...
0
votes
1answer
32 views

Rewrite URL SEO

My site has a url like this http://www.mydomain.com/index.php?page=doctors&docid=99 Using SEO rewrite RewriteRule ^doctors/([0-9]+)/(.*).html$ index.php?page=doctors&docid=$1 [L] I get ...
0
votes
2answers
62 views

.htaccess rewrite multiple urls without redirects

Ok so i have urls like these demo1.domain.net, demo2.domain.net, demo3.domain.net and all needs to show the contents of a subfolder like this example demo1.domain.net will show the contents of ...
0
votes
1answer
68 views

rewriting simple html files for SEO friendly URLS

I have a simple file mydomain.com/business_nottingham.html and i want to re-write that to an SEO friendly URL, eg mydomain.com/business-nottingham/ I've googled all the examples but they seem to be ...
0
votes
1answer
26 views

Making sure my rewrite rule is a 301 re-direct

I have the following re-write rule which directs krmmalik.com to krmmalik.com/me How do i make sure this rule is a 301 re-direct, and if it isnt one already, how can i turn it into one? I've tried ...
1
vote
1answer
49 views

Rewritten URL not displaying properly in the address bar…and it did earlier [closed]

Well, I cocked something up in my .htaccess code. I swear, when I ran this on my test website, it ran perfect. It initially did the following: Renamed my index.php page to /home (and it still does ...
0
votes
1answer
27 views

Proper configuring of 301 redirects for SEO compliance? [closed]

After a lot of research and help from SO members, I have cleared my first major hurdle with .htaccess. My new .htaccess file successfully renames my index.php page to /home and takes all of the query ...
1
vote
1answer
26 views

regexp + modrewrite just work

Im trying to redirect old Google cached links to our new site. So it works in my regexp editor but not in my htacess file? The first rule seems to work but the second does not. I've left examples ...
0
votes
1answer
59 views

Google stopped indexing newer pages [closed]

I'm working on a website for someone which sells their products on their web site. There is an item.php page which displays the item for sale. I switched all item pages/inks from dynamic URLs to ...
2
votes
0answers
80 views

Adding i18n using subfolder technique and a Proxy

I've a webapp running on context "/" and I want now to internationalize it using a subfolder technique. I want the same site previously hosted under http://www.mysite.com/ now to serve different ...
0
votes
1answer
38 views

Apache URL rewrite trick to fix encoded “http://”

I've some leading to a site that end up poorly formated like: http://www.mydomain.com/directory/http%3A%2F%2Fwww.another.com%2Falink-that-doesnt-work I would like a rewrite rule to truncate that ...
1
vote
1answer
144 views

.htaccess RewriteRule not working, need to generate a URL friendly

I have this dynamic link: http://www.nortedigital.mx/article.php?id=36175&t=dobla_las_manos_el_snte__avala_reforma_educativa and I need to convert in URL friendly like this: ...
0
votes
1answer
37 views

In mod rewrite ignore Dynamic Path and keep sub path

I have a site with dynamic paths and I need to know how to keep a part or ignore it: A couple examples of dynamic paths: http://www.example.com/185/seo-dynamic-field.html ...
2
votes
1answer
52 views

Is there an SEO penalty for writing URLs with segments that have no index content?

I am working on a bootstrap based responsive website. The dropdown menus in the main website navigation are opened with a click rather than a hover. There is no index content for each section, only ...
0
votes
2answers
14 views

Mod rewrite. Without endslash redirect to endslash

For some seo reasons I need to redirect all links like http://site.com/some/category to http://site.com/some/category/ So I've solved this issue with this RewriteCond %{REQUEST_URI} !(.*)/$ ...
-1
votes
1answer
53 views

Skip .htaccess rules for some particular files

Now i am using the following .htaccess rules to modify my urls.My website contains more images and similar files.I found that .htaccess rules increases site's loading time.I wish to skip execution of ...
1
vote
1answer
78 views

htaccess rewrite underscores to dashes for a specific directory

I can successfully rewrite underscores to dashes with the following -- but I need the code to work ONLY for a certain directory, and I can't get that part to work. WORKS: RewriteRule ...
0
votes
1answer
21 views

simple RewriteRule pattern not working

I have the following in my .htaccess file RewriteEngine On RewriteRule ^committees([^/]*)$ /committees/view.cfm?c=$1 [L] So any requests to: http://www.acme.org/committees/12345abcd are routed ...
0
votes
2answers
96 views

Issue with subdomains and htaccess for SEO

I would like to change urls from: http://subdomain.domain.com/page/ to http://subdomain.domain.com/?page=pagename and also: http://domain.com/page/ to http://domain.com/?page=pagename though haven't ...
0
votes
1answer
57 views

How to change url variable with custom variable [duplicate]

Possible Duplicate: How to: URL re-writing in PHP? My intention is to change the variable (id) passed on the URL with another variable (custom text). To more clear I would like to change: ...
1
vote
1answer
57 views

mod_rewrite bug and permission denied

i'm using mod_rewrite to rewrite sites like "url.com/foo" to "url.com/index.php?site=foo". The Code: RewriteEngine On RewriteBase / RewriteRule ^([0-9a-zA-Z]+)$ index.php?site=$1 If i click on a ...
0
votes
0answers
48 views

mod_rewrite multiple variable directories

I have a URL pattern that I need to redirect that contains multiple category style directories, like: http://www.domain.com/dir1/dir2/dir3/cat1/cat2/cat3/cat4/cat5/cat6/cat7/p/ID-name.html The dir ...
0
votes
1answer
70 views

mod_rewrite rules fail after apache restart

I have the following rewrite rules but every time I restart Apache they prevent apache from restarting and FAIL. One error was... Starting httpd: Syntax error on line 82 of ...
0
votes
1answer
64 views

ModRewrite - How to configure .htaccess for mod_rewrite for SEO purposes

I'm trying to make some improvements to my e-commerce site to have better Search Engine Optimization. One of the more important things is to setup the product to not use the old: ...
0
votes
1answer
122 views

SEO Friendly URLs Not Working [closed]

I'm trying to setup SEO friendly URLs for my websites but can't seem to get them to work. Here's the code for my htaccess: Options +FollowSymLinks RewriteEngine On deny from all allow from ...
0
votes
1answer
149 views

Apache mod_rewrite not working

I have a problem with the mod_rewrite module for Apache 2.2 My code will neither work on localhost (Wamp on Win8 Pro, IPv6) nor on the webhotel (site5.com). My goal is to generate SEO friendly URLs ...
1
vote
1answer
63 views

Are these RewriteBase and RewriteRule useful for my SEO?

I have used a developing subdirectory to install a wordpress platform. When I have asked to programmers to move everything to the root they have used rewriting urls rules in the htaccess file in this ...
2
votes
0answers
197 views

Apache redirect subdomain to folder, process folder as subdomain

It may looks complicated but I need to change the structure of an existing website to bring it to a more seo friendly level. Current structure is subdomain oriented. ex: ...
0
votes
1answer
98 views

htaccess regex vs php manual parameter parsing

my query is about either creating a regex to capture: 0 or More Subcategories 0 or 1 Paging index 0 or 1 Product Id This would be done easily by reading everything as a single parameter and this ...
2
votes
2answers
1k views

htaccess RewriteRule *.php to /*/

I just can't find correct solution for what I need, so I hope someone will be able to help me here. I now have website with this files: /admin/ /images/ /js/ about.php index.php news.php ...
0
votes
1answer
111 views

How to convert querystring to paths URL using mod_rewrite?

I'm trying to rewrite a URL that has a query string to its SEO friendly name i.e. consider mysite.com/models?p1=v1 I'd like to rewrite it to mysite.com/models/p1/v1 The user should see the above ...
1
vote
2answers
116 views

structure of a website php, seo and mod_rewrite [closed]

Another very beginner website question. So looking at the file structure behind a simple php site: File structure for PHP-based website Folder/File Structure Conventions? Suggest using a structure ...
3
votes
1answer
172 views

Rewrite a dynamic url after extension removed

I've been working on my HTAccess for a couple days now, and I've hit a dead end. I've rewritten and redirected the files to be extensionless, now I need to rewrite the url to be SEO Friendly. ...
0
votes
1answer
31 views

Use mod_rewrite to delete ?category_id=xx from URLs

I would like to use mod_rewrite to delete ?category_id=xx from all URLs on my page, with xx being a random number >= 1. Example: http://mypage.com/product-123.html?category_id=76 should become ... ...
0
votes
0answers
28 views

mod_rewrite and “pretty urls”

I'm woefully underequipped to use mod_rewrite for clean, SEO-friendly urls, but I am really determined to learn. I've found various online tutorials but can't seem to really understand the information ...
2
votes
1answer
946 views

.htaccess 301 redirect from old domain to new domain while structure of pages and url are same

I want to redirect http://olddomain.com to http://newdomain.com for my all urls..keeping the page on new domain same. What i mean to say is URLs such as below ...
0
votes
1answer
111 views

Taking a site down temporarily with Codeigniter (301 possible with routes.php?)

I'm using Codeigniter with the standard .htaccess rewrite rules so that no /index.php/ is visible within the urls. Now I recently needed to take the site down temporarily and therefore wanted to ...
0
votes
1answer
460 views

htaccess: redirect to subdomain if page not found

Here's description for my problem i have moved the site from this path http://www.site.com/any-thing-here-workfine To subdomain like this http://portal.site.com/any-thing-here-workfine But to now ...
1
vote
2answers
54 views

Mod_rewrite works but path is changed

I have urls like this index.php?section=products&id=12 and I want urls like this /products/shirt-12 (where shirt is the name of the product). So I have a PHP script that, when you add a product, ...
1
vote
3answers
121 views

using htaccess for good SEO links

I building a Web forum whose link looks like this : http://127.0.0.1/website/comments.php?topic_id=2/create+good+seo+links The link generating the link looks like this <a ...
0
votes
1answer
34 views

Single page mod rewriting for SEO

I have a page as follows. www.mysite.com/about.php I want this to be set in the htaccess file so that it looks like below. www.mysite.com/my-keyword-here Please help me. Thanks in advance. Sam
0
votes
0answers
194 views

Rewrite perl cgi-bin URL's with multiple parameters using .htaccess

I'm working on a PERL site which uses the medoc ecommerce system, and I've found that is spits out really ugly URL's which have no meaning to users or search engines: ...
0
votes
1answer
368 views

301 redirect with .htaccess in dynamic PHP website

I wanted to ask you a question about 301 URL redirection. So, I have a website and it's former URL used to be: http://www.sample.com/tutorials.php?name=sample But, now it's: ...
0
votes
1answer
26 views

Necessarity of 301 redirect [closed]

So, I just wanted to ask you is it really necessary to put 301 redirect in your .htaccess file? I mean, I this is my old URL : http://www.sample.com/tutorials.php?name=sample and this is the new ...
0
votes
1answer
25 views

Redirect everything except ?p=*

how can I configure a .htaccess file to redirect every link except domain.com?p=* and domain.com/index.php?p=* to domain.com I hope you understand my question, thank you for every answer. ...
1
vote
2answers
78 views

Htaccess and SEO Friendly Permalink

Now, my permalink appears like that; http://www.mywebsite.com/readhoroscope?horoscope=gemini I want to make this permalink like this; http://www.mywebsite.com/gemini.html How can I do that by ...
1
vote
1answer
115 views

modrewrite - all php files to html which is SEO friendly and works in both ways

I'm new to this modrewrite beast. I managed to get it working and I can normaly load index.php as index.html for example. Problem is when I try to navigate to index2.html and I get error 404 error, ...

1 2 3 4