【问题标题】:.htaccess set my url.htaccess 设置我的网址
【发布时间】:2015-01-08 04:58:25
【问题描述】:

我正在寻找 .htaccess 文档/教程,但没有正确获取,我不知道现在学习的水平或其他东西不是我的水平。
也请推荐学习.htaccess的链接

但在这里我必须设置我的网址
在服务器上,我的主网站位于根目录
除此之外,我在子目录/sites 中有我的其他网站

/sites/myblog
/sites/myfriends
/sites/other

目前正在访问这些www.domain.com/sites/myblog
但我想将其网址设置为 www.domain.com/myblog 替换 sites
我正在使用阿帕奇

【问题讨论】:

标签: apache .htaccess url


【解决方案1】:

您可以在DOCUMENT_ROOT/.htaccess 文件中使用此代码:

RewriteEngine On
RewriteBase /

# If the request is not for a valid directory
RewriteCond %{REQUEST_FILENAME} !-d
# If the request is not for a valid file
RewriteCond %{REQUEST_FILENAME} !-f
# it is not already /sites/
#RewriteCond %{REQUEST_URI} !^/sites/ [NC]
RewriteRule ^ sites%{REQUEST_URI} [L]

还有一些关于mod_rewrite 的好文档:

【讨论】:

    猜你喜欢
    • 2012-01-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-04-01
    • 1970-01-01
    • 1970-01-01
    • 2011-05-23
    相关资源
    最近更新 更多