1
vote
0answers
23 views

.htacces redirect for AJAX search engine indexing

Ok, so I made a pure html/javascript AJAX website, but I want my pages indexable by Google. I have my content files with meta information in plain html, but without menubar etc. and I have my ...
0
votes
2answers
66 views

Selectively force file download with Apache based on URL parameter

I have an Apache 2.2 running and I am forcing some files to be downloaded using this .htaccess snippet: <Files *.*> ForceType application/octet-stream Header set ...
0
votes
0answers
139 views

htaccess - Rewrite URL to remove original filename and replace with GET value

I'm currently using the following htaccess to remove .php extension from all files:- RewriteEngine On RewriteCond %{REQUEST_FILENAME}.php -f RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) $1\.php ...
0
votes
0answers
32 views

Complex redirect (htaccess experts)

We have some "QR" posters and flyers printed, that link to: http://www.domain.com/onefantasticproduct.html#qr1 http://www.domain.com/awesomeproduct.html#qr1 .... This seems impossible to track in ...
1
vote
1answer
69 views

htaccess parameter

I have the following rewrite. The last one is par ID, but I want it variable, has to be ID or Quantity, is that possible? now: RewriteRule ^([a-z0-9\-]+)/([a-z0-9\-]+)/([a-z0-9\-]+)/?$ ...
3
votes
1answer
2k views

RewriteRule - two parameters but last parameter is optional

I cannot rewrite to include two parameters but the last parameter is optional, so for example: http://www.mywebsite.com/friends/jamie - (the forward slash should be optional too). Which should be ...
0
votes
3answers
5k views

htaccess, redirect virtual subdomain to URL parameter

I have a .ne.ro domain (registered in Romania) where visitors can enter with or without 'www': http://mydomain.ne.ro http://www.mydomain.ne.ro I want to redirect http://123.mydomain.ne.ro to ...