标签: skip

如何有条件地使我的.htaccess跳过规则?

我想将所有不包含"_js","_ css","_ img"等的URL重定向到我的调度脚本.不知怎的,它不起作用.例如,我的/ _js /文件夹中的所有文件都是无法访问的(这意味着:它们被发送到index.php而不是到达驻留在该文件夹中的物理文件).

这是我的htaccess:

IndexIgnore *
Options +FollowSymLinks
RewriteEngine on

# if the following conditions are met, SKIP the rewriteRules.

RewriteCond %{REQUEST_URI} ^/(_admin/¦_css/¦_js/¦_img/)
RewriteRule . - [S=9]


# Externally redirect to add missing trailing slash
RewriteRule ^(([a-z0-9._\-]+/)*[a-z0-9_\-]+)$ http://%{HTTP_HOST}/$1/?%{QUERY_STRING} [NC,R,L]

# SIX PARAMS
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?section=$1&item=$2&menu=$3&content=$4&id=$5&title=$6&%{QUERY_STRING} [NC,L]

# FIVE  PARAMS
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?section=$1&item=$2&menu=$3&content=$4&id=$5&%{QUERY_STRING} [NC,L]

# FOUR PARAMS
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?section=$1&item=$2&menu=$3&content=$4&%{QUERY_STRING} [NC,L]

# THREE PARAMS : projects/touch/texts/
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/?$ /index.php?section=$1&item=$2&menu=$3&%{QUERY_STRING} [NC,L]

# TWO PARAMS: downloads
RewriteRule ^downloads/([^/]+)/$ index.php?section=downloads&item=$1&%{QUERY_STRING}  [NC,L]

# …
Run Code Online (Sandbox Code Playgroud)

apache .htaccess mod-rewrite skip

0
推荐指数
1
解决办法
4997
查看次数

C#为什么跳过我的console.readline()?

所以程序运行正常,但由于某种原因,在第二次通过时,它完全跳过Console.ReadLine()提示.我经历了调试并确认它不是一个循环问题,因为它实际上正在进入该方法,显示WriteLine然后完全跳过ReadLine,从而返回一个空白回Main()导致它退出.什么是平分?有任何想法吗?

这是代码.

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace LAB4B
{
    class Program
    {
        static void Main(string[] args)
        {
            string inString;
            ArrayList translatedPhrase = new ArrayList();

            DisplayInfo();
            GetInput(out inString);

            do
            {
                GetTranslation(inString, translatedPhrase);
                DisplayResults(inString, translatedPhrase);
                GetInput(out inString);
            } while (inString != "");

        }

        static void DisplayInfo()
        {
            Console.WriteLine("*** You will be prompted to enter a string of  ***");
            Console.WriteLine("*** words. The string will be converted into ***");
            Console.WriteLine("*** Pig Latin and the results displayed. ***");
            Console.WriteLine("*** …
Run Code Online (Sandbox Code Playgroud)

c# skip readline

0
推荐指数
1
解决办法
6114
查看次数

读取文件时出现乱码问题

我无法从文件中读取数据,并将数据(文本)的选定部分连接到我自己的缓冲区中.

代码如下:

 char buffer[1000];
  char* allNewData = (char *)malloc(10000);

  while (! myfile.eof() )
  {
   myfile.getline (buffer, 1000);
   pch = strstr (buffer,"bla bla");
   if(pch == NULL)
   {
    char* temp = buffer;
    strcat(allNewData, temp);
    strcat(allNewData, "\n");
   }
   else
   {
    strcat(allNewData, "here's bla bla");
    strcat(allNewData, "\n");
   }
  }

  cout<<allNewData<<endl;
Run Code Online (Sandbox Code Playgroud)

当我运行程序时,allNewData首先有一些垃圾文本,然后是正确/预期的结果,如下所示:

iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii <-rubbish data
hello  <- actual data
Run Code Online (Sandbox Code Playgroud)

我需要摆脱这些垃圾数据,如何更改代码来实现这一目标?

c++ ignore skip stream

0
推荐指数
1
解决办法
3191
查看次数

有没有办法立即跳转到下一个声明?

所以这可能是一个奇怪的问题,但我有一个从控制台运行的C#程序,除了一件事以外,现在一切正常.

在我的程序中,我有一段代码如...

loadFile();

foreach(var x in imgSet)
{
  //do whatever
}
Run Code Online (Sandbox Code Playgroud)

我遇到的问题是我希望我的整个程序自动化并使用任务调度程序运行,我不希望人工交互.程序loadFile()在控制台中调用该方法就好了,但是在写出该方法的输出后,用户必须按Enter进入该foreach循环.我不知道为什么会这样,并且想知道是否有办法绕过它并使其完全自动化?

c# console automation skip c#-4.0

0
推荐指数
1
解决办法
125
查看次数

读取.txt中所有大写或小写Python 2.7.1的所有行?

我正在尝试读取所有上部或全部小写的文件行.

如果file.txt包含:

Rememberr 8? when you
. Tellingmee THAT one
didntrememberthat
onethingtoday
Run Code Online (Sandbox Code Playgroud)

我希望它能读到:

didntrememberthat
ONETHINGTODAY
Run Code Online (Sandbox Code Playgroud)

到目前为止,我有:

def function(file_name):
    data=[]
    f=open(file_name,'r')
    lines=f.readlines()
    for k in lines:
        single=tuple(k)
        for j in single:
            j=str(j)
            if j.isupper() or j.islower() == False:
            lines=f.readlines()[j:]
Run Code Online (Sandbox Code Playgroud)

然后我明白了:

lines=f.readlines()[j:]
TypeError: slice indices must be integers or None or have an __index__ method
Run Code Online (Sandbox Code Playgroud)

这是有道理的,因为j它不是一个整数.但是,j当我遇到if-statement 时,我怎么能找到它的位置?

如果有一种更简单的方法可以做到这一点非常棒

python element skip lines

0
推荐指数
1
解决办法
1489
查看次数

找到所有但跳过一个文件夹

我有一个命令,可以查看我的所有子文件夹中的文件,但是我希望它从搜索中跳过一个文件夹,我不确定这样做的正确方法是什么:

find -name '*.avi' -o -name '*.mkv' -o -name '*.mp4' -o -name '*.vob'
Run Code Online (Sandbox Code Playgroud)

我希望它不要查看文件夹名称:安全

我试过了:

find -name '*.avi' -o -name '*.mkv' -o -name '*.mp4' -o -name '*.vob' --skip 'secure'
Run Code Online (Sandbox Code Playgroud)

但它不起作用.

感谢您的帮助.

linux skip find

0
推荐指数
1
解决办法
704
查看次数

因为循环正在跳过一些东西!蟒蛇

我正在尝试运行此代码,以便它为列表的所有元素运行一个函数.为了说明的目的,基本上它应该打印:

'----------Possible Word:', possible_word
Run Code Online (Sandbox Code Playgroud)

对于我列表中的所有项目.因此,如果我输入['p','r','s'],它将运行该打印3次,每个项目一次.我的代码如下 - 当我运行它时它只运行p和s,而不是r,这真的很奇怪.有任何想法吗?

def check_matches(input):
print 'Input:', input
for possible_word in input:
    print '----------Possible Word:', possible_word
    valid = True
    for real_word in word_dictionary:
        possible_word_list = list(possible_word)
        real_word_list = list(real_word)
        print possible_word_list
        print real_word_list
        number_of_characters_to_check = len(possible_word_list)
        for x in range(0, number_of_characters_to_check):
            print possible_word_list[x] + real_word_list[x]
            if (possible_word_list[x] != real_word_list[x]):
                valid = False
    if (valid == False):
        input.remove(possible_word)
print all_possible
return input
Run Code Online (Sandbox Code Playgroud)

python loops skip

0
推荐指数
1
解决办法
250
查看次数

跳过forloop Django中的特定步骤

嗨,我在Django模板中使用一个forloop

{% for image in images %}
{% endfor %}
Run Code Online (Sandbox Code Playgroud)

执行10个步骤

但我想跳过第五步并执行剩余的操作步骤,建议...

django for-loop skip

0
推荐指数
1
解决办法
913
查看次数

如果'if'条件已经运行,Python是否会跳过阅读'else'条件?

我正在查看我的一些代码的执行流程,我想知道以下内容是否有效.

具体来说,我正在查看else此条件树中的子句.如果在内存中没有指定配置路径,我将获得一个将配置路径作为输入的函数.假设我给出正确的输入.在declareConfPath()检查declareConfPath()运行时是否指定了任何内容之后,计算机没有理由运行条件嵌入式.

我的问题是,如果程序跳过else案例,或者如果它读取else案例并将采用树的第一种情况中confPath指定的新值.如果它没有跳过,那么我已经解决了所有必要的条件,而不是一个涉及另一棵树的替代解决方案.如果没有,那么我需要复制几行代码.这不贵,但也不优雅.declareConfPath()if

也可能是这样的情况,使用elif而不是if可能得到我想做的,但我不知道.

confPath = None; # or if the file when opened is empty?
_ec2UserData = None;
localFile = False;

# As we are dealing with user input and I am still experimenting with what information counts for a case, going to use try/except.

# Checks if any configuration file is specified
if confPath == None: #or open(newConfPath) == False: …
Run Code Online (Sandbox Code Playgroud)

python conditional if-statement skip

0
推荐指数
1
解决办法
2482
查看次数

为什么MongoDB的skip()使用起来如此之慢和糟糕,而MySQL的LIMIT如此之快?

Mongo的skip()适用于小型集合,但是一旦你有几千条记录,它就开始变慢.

老实说,我想知道为什么NoSQL数据库中类似LIMIT的功能如此难以实现.

我一直在阅读的唯一"解决方案"是使用基于范围的查询.但对于很多不可行的解决方案.

mysql skip limit mongodb nosql

0
推荐指数
1
解决办法
1308
查看次数

Java中令人费解的数组赋值行为

所以这就是它.我一直在为一个更大的项目构建一个软件,而现在,我对Java处理代码的方式感到困惑.我完全不知道为什么Java在这里的行为方式.

它似乎跳过我的部分代码,并且在没有调用相应方法时将值分配给不同于我预期的数组.

我已经使用IntelliJ调试器对它进行了几个小时的扫描,对所有事情进行了如此密切的检查,但我没有找到一个理由来解释为什么事情会像他们那样发生.

package com.whatareyoudoing.java;
import java.util.Arrays;

/**
 * WHAT THE ACTUAL DUCK
 */
public class WTF {
    private int[] number;
    private int[] oldNumber;

    public WTF() {
        number = new int[1];
        oldNumber = new int[1];
    }

    public void putNumber(int c) {
        number[0] = c;
    }

    public void putOld() {
        if(Arrays.equals(oldNumber, number)) {
            System.out.println("Nothing to do!");
            return; //How on earth can they literally be the same?!
        }
        oldNumber = number;
    }

    public void doWTF() {
        putNumber(1); 
        putOld(); // Works.
        putNumber(2); // …
Run Code Online (Sandbox Code Playgroud)

java arrays skip intellij-idea variable-assignment

0
推荐指数
1
解决办法
87
查看次数

什么事情发生了?Python跳过函数行

当我在Python中运行以下程序时,该函数接受变量,但完全跳过其余部分并重新显示程序的主菜单而不做任何事情.此外,它会跳过符合条件的"if"语句并询问所有变量,即使选择了第一个或第二个选项(不需要第三个变量).顺便说一句,它不应该是一个缩进错误,我只是缩进以显示它是stackoverflow中的代码.

编辑:NEVERMIND.我得到了它的工作.函数括号中的变量都必须相同.DUH!咂额头

option = 1
while option !=0:
    print "\n\n\n************MENU************"
    print "1. Counting"
    print "2. Fibbonacci Sequence"
    print "0. GET ME OUTTA HERE!"
    print "*" * 28
    option = input("Please make a selection: ") #counting submenu
    if option == 1:

        print "\n\n*******Counting Submenu*******"
        print "1. Count up by one"
        print "2. Count down by one"
        print "3. Count up by different number"
        print "4. Count down by different number"
        print "*" * 28
        countingSubmenu = input("Please make a selection: …
Run Code Online (Sandbox Code Playgroud)

python if-statement function skip

-3
推荐指数
1
解决办法
2743
查看次数