开发者

.htaccess rewrite to default language folder?

开发者 https://www.devze.com 2022-12-10 06:02 出处:网络
I have my site broken down into several folders by language: / /en/ index.php about-us.php faq.php ... /fr/ index.php

I have my site broken down into several folders by language:

/
  /en/
    index.php
    about-us.php
    faq.php
    ...

  /fr/
    index.php
    about-us.php
    faq.php
    ...

  ...
  etc.

I'd like to have a rewrite rule that automatically rewrites to the en folder if somebody tried to enter mydomain.com/about-us.php.

FYI, I also already have a rewrite rule in place that removes the extension, so really I want to make sure that mydomain.com/about-us rewrites to mydomain.com/en/about-us. Here's my existing rewrite rule that does this:

# allows for extension-agnostic urls 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php

That make sense? Anyone help me out here?

EDIT:

@Gumbo -

Here's what my .htaccess file looks like (this is all that's in it):

RewriteEngine On

# defaults to the english site
RewriteRule !^[a-z]{2}/ /en%{REQUEST_URI} [L,R=301]

# allows for extension-agnostic urls
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php

This file is in the root of my website (not in a language folder). I've reloaded my webserver, just to be on the safe side, and 开发者_StackOverflowI still get this error message when I try to go to mydomain.com/about-us:

Not Found

The requested URL /about-us was not found on this server.

... where mydomain.com/en/about-us works just fine.

Any other thoughts?


Put this rule before your rule:

RewriteRule !^(fr|en)/ /en%{REQUEST_URI} [L,R=301]

Or more general:

RewriteRule !^[a-z]{2}/ /en%{REQUEST_URI} [L,R=301]
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号