Welcome Guest, Not a member yet? Register   Sign In
htaccess Sitemap.xml
#1

[eluser]Unknown[/eluser]
Helo

I have writed a function to generate a sitemap.xml.

the function is in /main/sitemap

I have a classic .htaccess like:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ index.php?/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

I modify like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^Sitemap\.xml$ index.php?/main/sitemap [L]
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ index.php?/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

when I call "http://mysite.com/index.php?/main/sitemap"
or "http://mysite.com/main/sitemap"
it is good

but
"http://mysite.com/Sitemap.xml" return an Error 404

Where is the error in my .htaccess

Thank you




Theme © iAndrew 2016 - Forum software by © MyBB