In my TYPO3 Website I have lots of files under fileadmin/documents.
Problem is that all the documents are accessable if you know the direct link.
Is there a way to secure them and only access them when logged in as feuser?
Thanks
Yes that is possible and there are extensions for that. For example:
https://typo3.org/extensions/repository/view/secure_downloads
https://typo3.org/extensions/repository/view/fal_securedownload
Related
301 redirect has me completely lost and confused so I would really appreciate if someone can help me with the code.
My website is www.dfwpcrepairs.com I recently purchased the SSL for my site and changed the site from plain HTML site to Wordpress. I kept all the URLs structures the same as they were before and used a plugin to keep the .html extensions in Wordpress for every URL/page on my site.
So Google Analytic tells me that I have a redundant URLs which I assume it is the non www and the www version of my site.
I want to redirect everything to the www/SSL version of my site/URL. Can someone please help me with the code for this?
I would greatly appreciate this.
Regards,
Rnaderpo
I would recommend you use a plugin for this instead of hacking into .htaccess file.
I personally use WordPress HTTPS (SSL) you can use any other you like.
I'm trying to redirect the forum link on my website
example.com/forum to example.net/forum
Most code is either for a page or an entire site. I'm trying to figure out how to do it specifically for ONE directory
You want to instruct the browsers that your forum has moved. This is a "301 redirect".
Supposing your server is Apache, the best is to use an .htaccess file :
http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3F
Here is a list of other methods to do the same :
http://www.webconfs.com/how-to-redirect-a-webpage.php
For example I can access a twitter resource from the following
http://twitter.github.com/bootstrap/assets/css/bootstrap.css
When I try to access the 'raw' file from my own repository I get
https://raw.github.com/nodeninja/book/master/chapter02/bootstrap/public/stylesheets/docs.css
Which doesn't work correctly in a web page I'm guessing because of https. What's the correct way to do this link?
GitHub have a pages facility for doing this
http://help.github.com/pages/
This is what I wanted
http://nodeninja.github.com/book/chapter02/docs.css
I have a page on my DotNetNuke site and I would like to set up a redirect and was wondering the best way to do it. Here is the problem:
I have a page on the site: mydomain.com/dashbaord.aspx. I would like users to be able to type mydomain.com/dashboard OR mydomain.com/Dashboard and it will redirect them to the /dashboard.aspx page.
I have IIS6, so I set up wildcard mapping, and it seemed to work for /dashboard, but not /Dashboard. Also, I am looking for it to literally redirect you so that /dashbaord.aspx shows up in the address bar. In addition, the wildcard mapping broke some other links on the site, so I was looking for an alternative method to accomplish this. Is there a way that I can set this up through IIS? Or any other way?
Thanks in advance for the help.
In IIS, create a virtual directory by right clicking on Sites, and then call it Dashboard. Then set that to redirect to a specific URL, in your case, http://mydomain.com/dashboard.aspx.
So I have an MVC 2 website online right now. I set up my webmaster account over at google, and they want me to submit the robots.txt and sitemap.xml URL's of my site.
Directions are, "put them in your sites root directory", yeah yeah yeah I know, but this doesn't work with MVC, since everything is based off routing.
Is there a way I can set both these things up so I can access them directly by going like, www.domain.com/robots.txt and www.domain.com/sitemap.xml ?
Both the the files are currently in my root directory, I just don't know how to set it up so I can access them like that using that type of URL.
Thanks!
this did it :)
I'm getting a "Does not implement IController" error on images and robots.txt in MVC2