使用.htaccess
我想重写类似于下面的所有网址请求:
http://myhomework.ca/courses/math-9/2-2
以便他们重定向以包含尾部斜杠:
http://myhomework.ca/courses/math-9/2-2/
在网上尝试了很多例子但找不到合适的解决方案。
由于
答案 0 :(得分:0)
试试这个,我觉得它对你很有帮助。
dispatch_async(dispatch_get_main_queue, ^{
UIView.animateWithDuration(0.5, delay: 0.1, options: UIViewAnimationOptions.CurveEaseIn, animations: {
self.buyView.frame = CGRectMake(0.0, self.buyView.frame.origin.y - (56.0 + 64.0 + 43.0 + self.SearchBar.frame.origin.y + self.Segment.frame.origin.y), self.view.frame.size.width, 412.0)
}) { (finished) -> Void in}
UIView.commitAnimations()
});
感谢。
答案 1 :(得分:0)
通常,您应该提供最新规则或您尝试过的规则。这应该适合你。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [L,R=301]